Skip to content

Commit 056ba07

Browse files
committed
ci: also skip ts + nightwatch test in circleci
1 parent 340808b commit 056ba07

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
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:

packages/@vue/cli-plugin-typescript/__tests__/tsPluginE2e.spec.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)