Skip to content
Permalink
Browse files
fix: missing comma
  • Loading branch information
sodatea committed Oct 11, 2018
1 parent 85b1089 commit 4e90afe18980f0f288908a7f7ef0974dc5a4545f
@@ -6,7 +6,11 @@ test('should work', async () => {
const project = await create('e2e-cypress', {
plugins: {
'@vue/cli-plugin-babel': {},
'@vue/cli-plugin-e2e-cypress': {}
'@vue/cli-plugin-e2e-cypress': {},
'@vue/cli-plugin-eslint': {
config: 'airbnb',
lintOn: 'save'
}
}
})

@@ -1,5 +1,5 @@
// https://docs.cypress.io/guides/guides/plugins-guide.html
/* eslint-disable import/no-extraneous-dependencies global-require */
/* eslint-disable import/no-extraneous-dependencies, global-require */
const webpack = require('@cypress/webpack-preprocessor')

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

0 comments on commit 4e90afe

Please sign in to comment.