Notes/src/public/app/vitest.config.ts

11 lines
204 B
TypeScript
Raw Normal View History

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
2025-02-26 20:43:21 +02:00
environment: "happy-dom",
coverage: {
reporter: [ "text", "html" ]
}
}
});