Skip to content

Commit 0ceec2a

Browse files
committed
Replaced Jest config with a static (JSON) variant
1 parent 3bcb645 commit 0ceec2a

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

jest.config.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

jest.config.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"testEnvironment": "node",
3+
"coverageDirectory": "<rootDir>/dist/jest/coverage",
4+
"collectCoverageFrom": [
5+
"<rootDir>/dist/package/development/**",
6+
"!<rootDir>/node_modules/"
7+
],
8+
"coverageReporters": [
9+
"text-summary",
10+
"html"
11+
],
12+
"testPathIgnorePatterns": [
13+
"<rootDir>/node_modules/",
14+
"<rootDir>/dist/"
15+
],
16+
"modulePathIgnorePatterns": [
17+
"<rootDir>/dist",
18+
"<rootDir>/build"
19+
],
20+
"moduleNameMapper": {
21+
"^root": "<rootDir>",
22+
"^src": "<rootDir>/src",
23+
"^lib": "<rootDir>/src/lib"
24+
},
25+
"verbose": false
26+
}

0 commit comments

Comments
 (0)