mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-10-01 10:11:31 +08:00
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
setupFiles: ["./test/setup.ts"],
|
|
environment: "happy-dom",
|
|
coverage: {
|
|
reporter: [ "text", "html" ]
|
|
}
|
|
}
|
|
});
|