@@ -11,7 +11,6 @@ test('base', async () => {
1111 expect ( pkg . eslintConfig ) . toEqual ( {
1212 extends : [ 'plugin:vue/essential' , 'eslint:recommended' ]
1313 } )
14- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
1514} )
1615
1716test ( 'airbnb' , async ( ) => {
@@ -27,7 +26,6 @@ test('airbnb', async () => {
2726 expect ( pkg . eslintConfig ) . toEqual ( {
2827 extends : [ 'plugin:vue/essential' , '@vue/airbnb' ]
2928 } )
30- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
3129 expect ( pkg . devDependencies ) . toHaveProperty ( '@vue/eslint-config-airbnb' )
3230} )
3331
@@ -44,7 +42,6 @@ test('standard', async () => {
4442 expect ( pkg . eslintConfig ) . toEqual ( {
4543 extends : [ 'plugin:vue/essential' , '@vue/standard' ]
4644 } )
47- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
4845 expect ( pkg . devDependencies ) . toHaveProperty ( '@vue/eslint-config-standard' )
4946} )
5047
@@ -61,7 +58,6 @@ test('prettier', async () => {
6158 expect ( pkg . eslintConfig ) . toEqual ( {
6259 extends : [ 'plugin:vue/essential' , '@vue/prettier' ]
6360 } )
64- expect ( pkg . devDependencies ) . toHaveProperty ( 'eslint-plugin-vue' )
6561 expect ( pkg . devDependencies ) . toHaveProperty ( '@vue/eslint-config-prettier' )
6662} )
6763
0 commit comments