test: fix test errors

This commit is contained in:
Haoqun Jiang
2020-08-28 00:44:45 +08:00
parent ebee88259e
commit bbe4bb5a23
2 changed files with 7 additions and 3 deletions
@@ -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'
@@ -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']
}
}
})
@@ -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': {},