Skip to content

Commit 5aa5b69

Browse files
authored
Merge pull request #45 from pwespi/master
fix(e2e): split e2e npm script into two Thanks for getting this implemented, especially since I'd never see this bug since I am rarely on a Windows machine. E3E needed some love.
2 parents 92a912c + c63ed67 commit 5aa5b69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"ionic:serve": "ionic-app-scripts serve",
1111
"test": "karma start ./test-config/karma.conf.js",
1212
"test-ci": "karma start ./test-config/karma.conf.js --single-run",
13-
"e2e": "webdriver-manager update --standalone false --gecko false; protractor ./test-config/protractor.conf.js"
13+
"e2e": "npm run e2e-update && npm run e2e-test",
14+
"e2e-test": "protractor ./test-config/protractor.conf.js",
15+
"e2e-update": "webdriver-manager update --standalone false --gecko false"
1416
},
1517
"dependencies": {
1618
"@angular/common": "4.1.3",

0 commit comments

Comments
 (0)