forked from MetaMask/providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
47 lines (46 loc) · 1.26 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const baseConfig = {
moduleFileExtensions: ['ts', 'js', 'json', 'node', 'jsx', 'tsx'],
preset: 'ts-jest',
// "resetMocks" resets all mocks, including mocked modules, to jest.fn(),
// between each test case.
resetMocks: true,
// "restoreMocks" restores all mocks created using jest.spyOn to their
// original implementations, between each test. It does not affect mocked
// modules.
restoreMocks: true,
testTimeout: 2500,
};
module.exports = {
projects: [
{
...baseConfig,
displayName: 'BaseProvider',
testEnvironment: 'node',
testMatch: ['**/BaseProvider*.test.ts'],
},
{
...baseConfig,
displayName: 'Browser Providers',
testEnvironment: 'jsdom',
testMatch: [
'**/*InpageProvider*.test.ts',
'**/*ExtensionProvider*.test.ts',
],
setupFilesAfterEnv: ['./jest.setup.js'],
},
],
collectCoverage: true,
collectCoverageFrom: ['./src/**.ts'],
coverageReporters: ['text', 'html'],
coveragePathIgnorePatterns: ['/node_modules/', '/mocks/'],
// TODO: Require coverage when we're closer to home.
// coverageThreshold: {
// global: {
// branches: 100,
// functions: 100,
// lines: 100,
// statements: 100,
// },
// },
silent: true,
};