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 59
59
steps :
60
60
- attach_workspace :
61
61
at : ~/
62
- # e2e-nightwatch was left out due to some unknown issues with selenium and the CI image
63
62
- 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
64
64
- run : yarn test tsPluginE2e
65
65
66
66
cli-ui :
Original file line number Diff line number Diff line change @@ -21,12 +21,14 @@ if (!process.env.APPVEYOR) {
21
21
} )
22
22
}
23
23
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` )
30
33
} )
31
- await project . run ( `vue-cli-service test:e2e` )
32
- } )
34
+ }
You can’t perform that action at this time.
0 commit comments