Skip to content

Commit

Permalink
Replaced Jest config with a static (JSON) variant
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaid committed Sep 17, 2021
1 parent cc0c38d commit f46456e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 25 deletions.
25 changes: 0 additions & 25 deletions jest.config.js

This file was deleted.

26 changes: 26 additions & 0 deletions jest.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"testEnvironment": "node",
"coverageDirectory": "<rootDir>/dist/jest/coverage",
"collectCoverageFrom": [
"<rootDir>/dist/package/development/**",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"text-summary",
"html"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist",
"<rootDir>/build"
],
"moduleNameMapper": {
"^root": "<rootDir>",
"^src": "<rootDir>/src",
"^lib": "<rootDir>/src/lib"
},
"verbose": false
}

0 comments on commit f46456e

Please sign in to comment.