-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvitest.config.ts
84 lines (83 loc) · 2.16 KB
/
vitest.config.ts
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { cpus } from "os";
import { join } from "path";
import { configDefaults, defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environmentMatchGlobs: [["**/*.test.ts", "**/*.test.tsx"]],
cache: {
dir: ".vitest/cache",
},
testTimeout: 10000,
pool: "threads",
poolOptions: {
threads: {
singleThread: false,
isolate: true,
maxThreads: Math.max(1, Math.floor(cpus().length * 0.75)),
minThreads: Math.max(1, Math.floor(cpus().length * 0.5)),
},
},
coverage: {
provider: "istanbul",
reportsDirectory: join(__dirname, "coverage"),
reporter: [
["html", { subdir: "html-report" }],
["text"],
["json-summary"],
["json"],
["lcovonly"],
],
thresholds: {
lines: 90,
branches: 80,
functions: 85,
statements: 90,
},
reportOnFailure: true,
exclude: [
...configDefaults.exclude,
".build_run",
"build_run",
".cdk",
".github",
".turbo",
".vitest",
".vscode",
"bin/app.ts",
"bin/cli/**",
"coverage",
"docs/**",
"lib/libs/email/mock-data/**",
"lib/libs/webforms/**",
"lib/local-aspects",
"lib/local-constructs/**",
"lib/packages/eslint-config-custom/**",
"lib/packages/eslint-config-custom-server/**",
"lib/stacks/**",
"mocks/**",
"node_modules/**",
"**/node_modules/**",
"react-app/src/components/ScrollToTop/**",
"react-app/src/features/webforms/**",
"react-app/src/main.tsx",
"react-app/src/utils/test-helpers/**",
"test/**",
"vitest.workspace.ts",
"**/*/.eslintrc.{ts,js,cjs}",
"**/*.config.{ts,js,cjs}",
"**/*.js",
"**/*.test.ts",
"**/*.test.tsx",
"**/assets/**",
"**/coverage/**",
"**/vitest.setup.ts",
"test/**",
"**/legacy-package-view.ts",
"**/legacy-admin-change.ts",
"**/legacy-event.ts",
"**/legacy-shared.ts",
],
},
},
});