forked from SharzyL/pastebin-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.config.js
More file actions
42 lines (41 loc) · 1.14 KB
/
vitest.config.js
File metadata and controls
42 lines (41 loc) · 1.14 KB
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
import { defineConfig } from "vitest/config"
import { defineWorkersProject } from "@cloudflare/vitest-pool-workers/config"
export default defineConfig({
test: {
coverage: {
provider: "istanbul", // v8 is not supported due for cf workers
reporter: ["text", "json-summary", "html", "json"],
},
projects: [
defineWorkersProject({
test: {
name: "Workers",
include: ["worker/test/**/*.spec.ts"],
coverage: {
provider: "istanbul", // v8 is not supported due for cf workers
reporter: ["text", "json-summary", "html", "json"],
},
poolOptions: {
workers: {
wrangler: {
configPath: "./wrangler.toml",
},
},
},
},
}),
{
extends: "frontend/vite.config.js",
test: {
include: ["frontend/test/**/*.spec.{ts,tsx}"],
name: "Frontend",
environment: "jsdom",
coverage: {
provider: "istanbul",
reporter: ["text", "json-summary", "html", "json"],
},
},
},
],
},
})