We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed44105 commit f153475Copy full SHA for f153475
1 file changed
package.json
@@ -40,6 +40,7 @@
40
"karma-spec-reporter": "0.0.30",
41
"karma-webpack": "2.0.2",
42
"mocha": "3.2.0",
43
+ "npm-run-all": "4.0.2",
44
"phantomjs-polyfill-object-assign": "0.0.2",
45
"phantomjs-prebuilt": "2.1.14",
46
"requirejs": "2.3.3",
@@ -61,8 +62,11 @@
61
62
"webpack": "2.2.1"
63
},
64
"scripts": {
- "test": "karma start karma.conf.js",
65
- "ci-test": "karma start karma-ci.conf.js && codecov",
+ "test": "run-s test:phantomjs",
66
+ "ci-test": "run-s -n test:phantomjs test:coverage test:saucelabs",
67
+ "test:saucelabs": "karma start karma-ci.conf.js",
68
+ "test:coverage": "codecov",
69
+ "test:phantomjs": "karma start karma.conf.js",
70
"build": "webpack -p --bail",
71
"update-online-docs": "gulp publish-docs",
72
"prepublish": "npm run build",
0 commit comments