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 c3618e6 commit e49cb52
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 28 deletions.
28 changes: 0 additions & 28 deletions jest.config.js

This file was deleted.

26 changes: 26 additions & 0 deletions jest.config.json
@@ -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 e49cb52

Please sign in to comment.