File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed
packages/@vue/cli-plugin-typescript/__tests__ Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 5959 steps :
6060 - attach_workspace :
6161 at : ~/
62- # e2e-nightwatch was left out due to some unknown issues with selenium and the CI image
6362 - run : yarn test -p unit-mocha,unit-jest,e2e-cypress
63+ # e2e-nightwatch was left out due to some unknown issues with selenium and the CI image
6464 - run : yarn test tsPluginE2e
6565
6666 cli-ui :
Original file line number Diff line number Diff line change @@ -21,12 +21,14 @@ if (!process.env.APPVEYOR) {
2121 } )
2222}
2323
24- test ( 'nightwatch' , async ( ) => {
25- const project = await create ( 'ts-e2e-nightwatch' , {
26- plugins : {
27- '@vue/cli-plugin-typescript' : { } ,
28- '@vue/cli-plugin-e2e-nightwatch' : { }
29- }
24+ if ( ! process . env . CIRCLECI ) {
25+ test ( 'nightwatch' , async ( ) => {
26+ const project = await create ( 'ts-e2e-nightwatch' , {
27+ plugins : {
28+ '@vue/cli-plugin-typescript' : { } ,
29+ '@vue/cli-plugin-e2e-nightwatch' : { }
30+ }
31+ } )
32+ await project . run ( `vue-cli-service test:e2e` )
3033 } )
31- await project . run ( `vue-cli-service test:e2e` )
32- } )
34+ }
You can’t perform that action at this time.
0 commit comments