-
Notifications
You must be signed in to change notification settings - Fork 14k
Expand file tree
/
Copy pathvitest.config.ts
More file actions
46 lines (44 loc) · 941 Bytes
/
vitest.config.ts
File metadata and controls
46 lines (44 loc) · 941 Bytes
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
import { defineConfig, defineProject } from "vitest/config";
import { cloudflareTest } from "@cloudflare/vitest-pool-workers";
import { getViteConfig } from "astro/config";
import tsconfigPaths from "vite-tsconfig-paths";
export default defineConfig({
test: {
projects: [
defineConfig({
plugins: [
cloudflareTest({
wrangler: { configPath: "./wrangler.toml" },
}),
],
test: {
name: "Workers",
include: ["**/*.worker.test.ts"],
deps: {
optimizer: {
ssr: {
enabled: true,
include: ["node-html-parser", "yaml"],
},
},
},
},
}),
defineProject({
test: {
name: "Node",
include: ["**/*.node.test.ts"],
environment: "happy-dom",
},
plugins: [tsconfigPaths()],
}),
getViteConfig({
test: {
name: "Astro",
include: ["**/*.astro.test.ts"],
},
plugins: [tsconfigPaths()],
}),
],
},
});