-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
vitest.workspace.ts
80 lines (78 loc) · 1.82 KB
/
vitest.workspace.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
/// <reference types="vitest" />
/// <reference types="vite/client" />
/// <reference types="vitest/config" />
/// <reference types="vitest/globals" />
import { defineWorkspace } from "vitest/config"
export default defineWorkspace([
{
test: {
globals: true,
environment: "happy-dom",
exclude: ["**/node_modules/**", "**/dist/**", "**/docs/**", "**/public/**", "**/test-apps/**"],
setupFiles: ["../../test/setup.tsx"],
css: true,
root: "./src/client",
name: "react-router-devtools/client",
// @ts-expect-error
coverage: {
provider: "v8",
include: ["src/**/*"],
reporter: ["text", "json-summary", "json", "html"],
reportOnFailure: true,
all: false,
thresholds: {
statements: 70,
branches: 75,
functions: 70,
lines: 70,
},
},
},
},
{
test: {
globals: true,
exclude: ["**/node_modules/**", "**/dist/**", "**/docs/**", "**/public/**", "**/test-apps/**"],
environment: "happy-dom",
root: "./src/server",
name: "react-router-devtools/server",
// @ts-expect-error
coverage: {
provider: "v8",
include: ["src/**/*"],
reporter: ["text", "json-summary", "json", "html"],
reportOnFailure: true,
all: false,
thresholds: {
statements: 70,
branches: 75,
functions: 70,
lines: 70,
},
},
},
},
{
test: {
globals: true,
exclude: ["**/node_modules/**", "**/dist/**", "**/docs/**", "**/public/**", "**/test-apps/**"],
environment: "happy-dom",
root: "./src/vite",
name: "react-router-devtools/vite",
// @ts-expect-error
coverage: {
provider: "v8",
include: ["src/**/*"],
reporter: ["text", "json-summary", "json", "html"],
reportOnFailure: true,
all: false,
thresholds: {
statements: 70,
branches: 75,
functions: 70,
lines: 70,
},
},
},
},
])