-
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathvitest.config.mts
More file actions
31 lines (30 loc) · 655 Bytes
/
vitest.config.mts
File metadata and controls
31 lines (30 loc) · 655 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
import { defineConfig } from "vitest/config";
// import { svelte } from "@sveltejs/vite-plugin-svelte";
// import sveltePreprocess from "svelte-preprocess";
import * as path from "path";
export default defineConfig({
plugins: [
// svelte({
// hot: !process.env.VITEST,
// preprocess: sveltePreprocess(),
// }),
],
resolve: {
alias: {
src: path.resolve("./src"),
obsidian: path.resolve("./tests/obsidian-stub.ts"),
},
},
test: {
include: ["src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
globals: true,
environment: "jsdom",
deps: {
optimizer: {
web: {
include: ["obsidian"],
},
},
},
},
});