Skip to content

Commit

Permalink
fix: change matching regex for Cypress files
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Dec 3, 2022
1 parent 019b38f commit 861d545
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Expand Up @@ -72,7 +72,7 @@
},
// Configuration for e2e testing (Cypress)
{
"files": ["**/*.cy.ts"],
"files": ["cypress/**/*.ts"],
"plugins": ["cypress"],
"extends": ["plugin:cypress/recommended"],
"parserOptions": {
Expand Down
2 changes: 1 addition & 1 deletion cypress/tsconfig.json
Expand Up @@ -7,6 +7,6 @@

"isolatedModules": false
},
"include": ["**/*.cy.ts"],
"include": ["**/*.ts"],
"exclude": []
}
2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -41,6 +41,6 @@
"@/public/*": ["./public/*"]
}
},
"exclude": ["./out/**/*", "./node_modules/**/*", "**/*.cy.ts"],
"exclude": ["./out/**/*", "./node_modules/**/*", "cypress/**/*.ts"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}

0 comments on commit 861d545

Please sign in to comment.