Skip to content

Commit 72eac23

Browse files
committed
Fixed Linter Errors -- unused variables
1 parent dda125b commit 72eac23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cypress/plugins/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* @type {Cypress.PluginConfig}
1717
*/
18-
module.exports = (on, config) => {
18+
module.exports = () => {
1919
// `on` is used to hook into various events Cypress emits
2020
// `config` is the resolved Cypress config
2121
};

cypress/support/init-seed.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Cypress.Commands.add('seedAndVisit', (seedData) => {
1+
Cypress.Commands.add('seedAndVisit', () => {
22
cy.visit('/');
33
cy.get('.CodeMirror')
44
.first()

0 commit comments

Comments
 (0)