Skip to content

Commit 4e90afe

Browse files
committed
fix: missing comma
1 parent 85b1089 commit 4e90afe

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/@vue/cli-plugin-e2e-cypress/__tests__/cypressPlugin.spec.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ test('should work', async () => {
66
const project = await create('e2e-cypress', {
77
plugins: {
88
'@vue/cli-plugin-babel': {},
9-
'@vue/cli-plugin-e2e-cypress': {}
9+
'@vue/cli-plugin-e2e-cypress': {},
10+
'@vue/cli-plugin-eslint': {
11+
config: 'airbnb',
12+
lintOn: 'save'
13+
}
1014
}
1115
})
1216

packages/@vue/cli-plugin-e2e-cypress/generator/template/tests/e2e/plugins/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// https://docs.cypress.io/guides/guides/plugins-guide.html
2-
/* eslint-disable import/no-extraneous-dependencies global-require */
2+
/* eslint-disable import/no-extraneous-dependencies, global-require */
33
const webpack = require('@cypress/webpack-preprocessor')
44

55
module.exports = (on, config) => {

0 commit comments

Comments
 (0)