File tree 1 file changed +0
-12
lines changed
packages/@vue/cli-plugin-e2e-webdriverio/__tests__
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ jest.setTimeout(process.env.APPVEYOR ? 120000 : 60000)
2
2
3
3
const create = require ( '@vue/cli-test-utils/createTestProject' )
4
4
5
- const CONFIG_FILES = [ 'wdio.shared.conf.json' , 'wdio.local.conf.json' ]
6
-
7
5
test ( 'should work' , async ( ) => {
8
6
const project = await create ( 'e2e-webdriverio' , {
9
7
plugins : {
@@ -16,11 +14,6 @@ test('should work', async () => {
16
14
}
17
15
} )
18
16
19
- await Promise . all ( CONFIG_FILES . map ( async ( configFile ) => {
20
- const config = JSON . parse ( await project . read ( configFile ) )
21
- await project . write ( configFile , JSON . stringify ( config ) )
22
- } ) )
23
-
24
17
if ( ! process . env . CI ) {
25
18
await project . run ( `vue-cli-service test:e2e` )
26
19
} else if ( ! process . env . APPVEYOR ) {
@@ -40,11 +33,6 @@ test('should work with TS', async () => {
40
33
}
41
34
} )
42
35
43
- await Promise . all ( CONFIG_FILES . map ( async ( configFile ) => {
44
- const config = JSON . parse ( await project . read ( configFile ) )
45
- await project . write ( configFile , JSON . stringify ( config ) )
46
- } ) )
47
-
48
36
if ( ! process . env . CI ) {
49
37
await project . run ( `vue-cli-service test:e2e` )
50
38
} else if ( ! process . env . APPVEYOR ) {
You can’t perform that action at this time.
0 commit comments