forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jest.config.js
61 lines (61 loc) · 1.55 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('@ts-jest/dist/types').InitialOptionsTsJest} */
export default {
transform: {
'^.+\\.js$': 'babel-jest',
'^.+\\.ts$': 'ts-jest',
'^.+\\.svelte$': [
'svelte-jester',
{
preprocess: true,
},
],
},
globals: {
'ts-jest': {
diagnostics: {
ignoreCodes: [1343],
},
astTransformers: {
before: [
{
path: 'node_modules/ts-jest-mock-import-meta',
},
],
},
},
},
transformIgnorePatterns: ['node_modules/(?!(svelte-i18n)/)'],
moduleFileExtensions: ['ts', 'js', 'svelte', 'json'],
collectCoverage: true,
coverageDirectory: 'coverage',
coverageReporters: [
'lcov',
'text',
'cobertura',
'json-summary',
'json',
'text-summary',
'json',
],
coverageThreshold: {
global: {
// TODO: temporal coverage decrease due to new logic,
// services, utils and and error handling.
// Mising tests for:
// - relayer-api/RelayerAPIService (partial test coverage)
// - bridge/ERC20Bridge (partial test coverage)
// - bridge/ETHBridge (partial test coverage)
statements: 93,
branches: 92,
functions: 97,
lines: 93,
},
},
modulePathIgnorePatterns: ['<rootDir>/public/build/'],
preset: 'ts-jest',
testEnvironment: 'jsdom',
testPathIgnorePatterns: ['<rootDir>/node_modules/'],
coveragePathIgnorePatterns: ['<rootDir>/src/components/'],
testTimeout: 40 * 1000,
watchPathIgnorePatterns: ['node_modules'],
};