mirror of
https://github.com/zadam/trilium.git
synced 2025-12-13 02:44:24 +01: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" ]
|
|
}
|
|
}
|
|
});
|