Skip to content

Commit 6ca7e29

Browse files
committed
test: fix linting problem
1 parent 26e4432 commit 6ca7e29

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/e2e/plugins/index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// as explained in the cypress docs
66
// https://docs.cypress.io/api/plugins/preprocessors-api.html#Examples
77

8-
/* eslint-disable import/no-extraneous-dependencies, global-require, arrow-body-style */
8+
// /* eslint-disable import/no-extraneous-dependencies, global-require, arrow-body-style */
99
// const webpack = require('@cypress/webpack-preprocessor')
1010

1111
module.exports = (on, config) => {
@@ -15,10 +15,10 @@ module.exports = (on, config) => {
1515
// }))
1616

1717
return Object.assign({}, config, {
18-
fixturesFolder: 'tests/e2e/fixtures',
19-
integrationFolder: 'tests/e2e/specs',
20-
screenshotsFolder: 'tests/e2e/screenshots',
21-
videosFolder: 'tests/e2e/videos',
22-
supportFile: 'tests/e2e/support/index.js'
23-
})
24-
}
18+
fixturesFolder: "tests/e2e/fixtures",
19+
integrationFolder: "tests/e2e/specs",
20+
screenshotsFolder: "tests/e2e/screenshots",
21+
videosFolder: "tests/e2e/videos",
22+
supportFile: "tests/e2e/support/index.js",
23+
});
24+
};

0 commit comments

Comments
 (0)