Skip to content

Commit

Permalink
test: fix test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sodatea committed Aug 27, 2020
1 parent ebee882 commit bbe4bb5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Expand Up @@ -6,7 +6,9 @@ test('should work', async () => {
const project = await create('e2e-webdriverio', {
plugins: {
'@vue/cli-plugin-babel': {},
'@vue/cli-plugin-e2e-webdriverio': {},
'@vue/cli-plugin-e2e-webdriverio': {
webdrivers: ['chrome']
},
'@vue/cli-plugin-eslint': {
config: 'airbnb',
lintOn: 'save'
Expand All @@ -29,7 +31,9 @@ test('should work with TS', async () => {
'tsLint': true,
'lintOn': ['save']
},
'@vue/cli-plugin-e2e-webdriverio': {}
'@vue/cli-plugin-e2e-webdriverio': {
webdrivers: ['chrome']
}
}
})

Expand Down
Expand Up @@ -27,7 +27,7 @@ test('should work with Vue 3', async () => {
})

test('should work with Vue 3 + TS', async () => {
const project = await createOutside('unit-mocha-vue-3', {
const project = await createOutside('unit-mocha-vue-3-ts', {
vueVersion: '3',
plugins: {
'@vue/cli-plugin-babel': {},
Expand Down

0 comments on commit bbe4bb5

Please sign in to comment.