forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
55 lines (55 loc) · 1.42 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
/** @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: {
statements: 95,
branches: 72,
functions: 89,
lines: 95,
},
},
modulePathIgnorePatterns: ["<rootDir>/public/build/"],
preset: "ts-jest",
testEnvironment: "jsdom",
testPathIgnorePatterns: ["<rootDir>/node_modules/"],
coveragePathIgnorePatterns: ["<rootDir>/src/components/"],
testTimeout: 40 * 1000,
watchPathIgnorePatterns: ["node_modules"],
};