-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.json
More file actions
39 lines (39 loc) · 1.05 KB
/
jest.config.json
File metadata and controls
39 lines (39 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"browser": true,
"collectCoverageFrom": ["<rootDir>/__tests__/**/*.test.{js}"],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/",
"<rootDir>/__tests__/__helpers__",
"<rootDir>/__helpers__",
"<rootDir>/__tests__/setup.js"
],
"roots": [
"<rootDir>/__tests__/",
"<rootDir>/__helpers__/",
"<rootDir>/__markup__/",
"<rootDir>/src/module/"
],
"modulePaths": [
"<rootDir>/src/module/",
"<rootDir>/__helpers__/",
"<rootDir>/__markup__/"
],
"modulePathIgnorePatterns": ["<rootDir>/lib/", "<rootDir>/node_modules/"],
"moduleNameMapper": {},
"transform": {
"^.+\\.js$": "babel-jest"
},
"setupFiles": ["<rootDir>/__tests__/setup.js"],
"setupFilesAfterEnv": ["@djforth/jest-matchers"],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup.js",
"<rootDir>/__tests__/__helpers__",
"<rootDir>/__tests__/__dummy__",
"<rootDir>/lib",
"<rootDir>/node_modules"
],
"unmockedModulePathPatterns": ["jasmine-expect"],
"verbose": true,
"watchman": false
}