Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 7a190d6

Browse files
Minor change to avoid ignoring eslint-rule.
1 parent 9b82741 commit 7a190d6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cypress/plugins/index.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable no-unused-vars */
21
// ***********************************************************
32
// This example plugins/index.js can be used to load plugins
43
//
@@ -12,7 +11,12 @@
1211
// This function is called when a project is opened or re-opened (e.g. due to
1312
// the project's config changing)
1413

15-
module.exports = (on, config) => {
14+
// module.exports = (on, config) => {
15+
// `on` is used to hook into various events Cypress emits
16+
// `config` is the resolved Cypress config
17+
// };
18+
19+
module.exports = () => {
1620
// `on` is used to hook into various events Cypress emits
1721
// `config` is the resolved Cypress config
1822
};

0 commit comments

Comments
 (0)