forked from cloudflare/cloudflare-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.workspace.ts
More file actions
43 lines (40 loc) · 871 Bytes
/
vitest.workspace.ts
File metadata and controls
43 lines (40 loc) · 871 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
import { defineWorkspace, defineProject } from "vitest/config";
import { defineWorkersProject } from "@cloudflare/vitest-pool-workers/config";
import { getViteConfig } from "astro/config";
import tsconfigPaths from "vite-tsconfig-paths";
const workspace = defineWorkspace([
defineWorkersProject({
test: {
name: "Workers",
include: ["**/*.worker.test.ts"],
deps: {
optimizer: {
ssr: {
enabled: true,
include: ["node-html-parser", "yaml"],
},
},
},
poolOptions: {
workers: {
wrangler: { configPath: "./wrangler.toml" },
},
},
},
}),
defineProject({
test: {
name: "Node",
include: ["**/*.node.test.ts"],
},
plugins: [tsconfigPaths()],
}),
getViteConfig({
test: {
name: "Astro",
include: ["**/*.astro.test.ts"],
},
plugins: [tsconfigPaths()],
}),
]);
export default workspace;