We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 41f0e9a + d411490 commit e77a747Copy full SHA for e77a747
src/config/helpers/eslint.js
@@ -42,7 +42,7 @@ const buildConfig = ({withReact = false} = {}) => {
42
{
43
devDependencies: rules[
44
'import/no-extraneous-dependencies'
45
- ][1].devDependencies.concat('jest/**'),
+ ][1].devDependencies.concat('jest/**', 'e2e/**'),
46
optionalDependencies: false,
47
},
48
],
src/config/jest.config.js
@@ -30,6 +30,7 @@ const jestConfig = {
30
testMatch: [
31
`**/__tests__/**/${testMatchGlob}`,
32
`test/**/${testMatchGlob}`,
33
+ `e2e/**/${testMatchSuffixGlob}`,
34
`**/${testMatchSuffixGlob}`,
35
36
testPathIgnorePatterns: [...ignores],
0 commit comments