-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjest.config.js
27 lines (20 loc) · 877 Bytes
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// For a detailed explanation regarding each configuration property, visit:
// https://jestjs.io/docs/en/configuration.html
module.exports = {
// The files that contain tests.
testMatch: ["**/src/**/__tests__/**/*.test.ts"],
// Automatically restore mocks between every test
resetMocks: true,
restoreMocks: true,
// The directory where Jest should output its coverage files
coverageDirectory: "coverage",
// Where our coverage data does and does not come from.
collectCoverageFrom: ["src/**/*.ts", "!src/__tests__/*.ts"],
// The test environment that will be used for testing
testEnvironment: "node",
// Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
fakeTimers: {
enableGlobally: true,
},
setupFilesAfterEnv: ["jest-extended/all", "./jest.setup.js"],
};