File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
22
"test" : " npm run lint && npm run test:types && npm run test:unit && npm run test:ssr && npm run test:e2e" ,
23
23
"test:unit" : " rollup -c build/rollup.dev.config.js && jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json" ,
24
24
"test:e2e" : " node test/e2e/runner.js" ,
25
- "test:ssr" : " rollup -c build/rollup.dev.config.js && VUE_ENV=server jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json" ,
25
+ "test:ssr" : " rollup -c build/rollup.dev.config.js && cross-env VUE_ENV=server jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json" ,
26
26
"test:types" : " tsc -p types/test" ,
27
27
"release" : " bash build/release.sh" ,
28
28
"docs" : " vuepress dev docs" ,
45
45
"babel-polyfill" : " ^6.22.0" ,
46
46
"babel-preset-env" : " ^1.5.1" ,
47
47
"chromedriver" : " ^2.32.3" ,
48
+ "cross-env" : " ^5.2.0" ,
48
49
"cross-spawn" : " ^5.0.1" ,
49
50
"css-loader" : " ^0.28.7" ,
50
51
"eslint" : " ^3.19.0" ,
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ module.exports = {
40
40
'desiredCapabilities' : {
41
41
'browserName' : 'phantomjs' ,
42
42
'javascriptEnabled' : true ,
43
- 'acceptSslCerts' : true
43
+ 'acceptSslCerts' : true ,
44
+ 'phantomjs.binary.path' : require ( 'phantomjs-prebuilt' ) . path
44
45
}
45
46
}
46
47
}
You can’t perform that action at this time.
0 commit comments