@@ -11,7 +11,6 @@ test('base', async () => {
11
11
expect ( pkg . eslintConfig ) . toEqual ( {
12
12
extends : [ 'plugin:vue/essential' , 'eslint:recommended' ]
13
13
} )
14
- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
15
14
} )
16
15
17
16
test ( 'airbnb' , async ( ) => {
@@ -27,7 +26,6 @@ test('airbnb', async () => {
27
26
expect ( pkg . eslintConfig ) . toEqual ( {
28
27
extends : [ 'plugin:vue/essential' , '@vue/airbnb' ]
29
28
} )
30
- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
31
29
expect ( pkg . devDependencies ) . toHaveProperty ( '@vue/eslint-config-airbnb' )
32
30
} )
33
31
@@ -44,7 +42,6 @@ test('standard', async () => {
44
42
expect ( pkg . eslintConfig ) . toEqual ( {
45
43
extends : [ 'plugin:vue/essential' , '@vue/standard' ]
46
44
} )
47
- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
48
45
expect ( pkg . devDependencies ) . toHaveProperty ( '@vue/eslint-config-standard' )
49
46
} )
50
47
@@ -61,7 +58,6 @@ test('prettier', async () => {
61
58
expect ( pkg . eslintConfig ) . toEqual ( {
62
59
extends : [ 'plugin:vue/essential' , '@vue/prettier' ]
63
60
} )
64
- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
65
61
expect ( pkg . devDependencies ) . toHaveProperty ( '@vue/eslint-config-prettier' )
66
62
} )
67
63
0 commit comments