1
0

Jest/Test setup

This commit is contained in:
2020-03-05 11:22:09 -05:00
parent 6fce8ab698
commit c1ed3e4f88
3 changed files with 69 additions and 7 deletions

10
jest.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
roots: ['src'],
preset: 'ts-jest',
testEnvironment: 'node',
coverageReporters: [
"html",
"json-summary",
"text-summary"
],
};