mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 16:12:43 +00:00
12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
include: ['src/**/*.test.ts', 'src/**/*.test.tsx'],
|
|
environment: "jsdom",
|
|
setupFiles: ["@testing-library/jest-dom/vitest"],
|
|
},
|
|
});
|