Skip to content

Commit 6524430

Browse files
committed
WIP
1 parent 74642aa commit 6524430

File tree

4 files changed

+7259
-3180
lines changed

4 files changed

+7259
-3180
lines changed

jest.config.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
process.env.TZ = 'UTC';
2+
3+
module.exports = {
4+
verbose: true,
5+
transform: {
6+
'\\.[jt]sx?$': 'babel-jest',
7+
},
8+
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
9+
testURL: 'http://localhost',
10+
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$'],
11+
testMatch: ['**/*.(spec|test).{ts,tsx}'],
12+
collectCoverage: true,
13+
coverageDirectory: './coverage/',
14+
};

0 commit comments

Comments
 (0)