Skip to content

Commit 7b2a62e

Browse files
committed
Exclude PW tests from Jest
1 parent bdb1a16 commit 7b2a62e

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

jest.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ const config: Config = {
77
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest",
88
".+\\.(svg|css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
99
},
10-
// moduleNameMapper: {
11-
// // "^.+\\.(svg|css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
12-
// '^.+\\.(svg|css|less|sass|scss)$': 'identity-obj-proxy',
13-
// }
10+
testPathIgnorePatterns: [
11+
"<rootDir>/tests/",
12+
]
1413
};
1514

1615
export default config;

0 commit comments

Comments
 (0)