-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed Mocha and nyc dependencies alongside with related config files. Introduced jest and adapted tests. Updated typescript to latest (with some other development dependencies). * Reduce line coverage threshold by 1% due to coverage tool differences * Add "text" coverage reporter
- Loading branch information
1 parent
36ee1b0
commit b7c0527
Showing
89 changed files
with
3,569 additions
and
2,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"roots": [""], | ||
"testMatch": ["**/test/**/*.spec.ts"], | ||
"moduleDirectories": ["node_modules"], | ||
"transform": { | ||
"^.+\\.ts$": "ts-jest" | ||
}, | ||
|
||
"testTimeout": 200000, | ||
"verbose": true, | ||
|
||
"coveragePathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/test/", | ||
"/coverage/", | ||
"/docs/", | ||
"/.compiler_cache/", | ||
"file_level_definitions_parser*.ts", | ||
"comments_parser*.ts" | ||
], | ||
"coverageReporters": ["text", "text-summary", "lcov"], | ||
"coverageThreshold": { | ||
"global": { | ||
"statements": 90, | ||
"branches": 85, | ||
"functions": 90, | ||
"lines": 94 | ||
} | ||
} | ||
} |
Oops, something went wrong.