Skip to content

Commit 3697200

Browse files
marcelo-portugalmportuga
authored andcommitted
chore(core): replace phantomJS with ChromeHeadless
1 parent 19475ea commit 3697200

File tree

6 files changed

+743
-290
lines changed

6 files changed

+743
-290
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ By default `grunt dev` will start several karma background watchers that will ru
117117
118118
> grunt dev --angular=1.5.11,1.6.7
119119
120-
You can also use the `--browsers` specify what browsers to test with (PhantomJS is the default).
120+
You can also use the `--browsers` specify what browsers to test with (ChromeHeadless is the default).
121121
122122
> grunt dev --browsers=Chrome
123123
@@ -143,7 +143,7 @@ The `karmangular` task runs tests serially against multiple browsers (it is used
143143
# Run tests against all available versions of Angular on Chrome
144144
> grunt karmangular --browsers=Chrome
145145
146-
# Run tests with a couple versions of Angular against the default PhantomJS browser
146+
# Run tests with a couple versions of Angular against the default ChromeHeadless browser
147147
> grunt karmangular --angular=1.5.11,1.6.7
148148
149149
## SauceLabs

grunt/clean.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ module.exports =
22
// Clean the temp directory
33
['.tmp', '<%= dist %>', 'docs', 'coverage',
44
'packages/*/.npmignore', 'packages/*/LICENSE.md',
5-
'packages/*/css', 'packages/*/js', 'packages/*/*.js',
6-
'packages/*/webpack.config.js']
5+
'packages/*/css', 'packages/*/js', 'packages/*/index.js']
76
;

0 commit comments

Comments
 (0)