All checks were successful
Deploy to Frontend Servers / deploy (push) Successful in 1m28s
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: "jsdom",
|
|
environmentOptions: {
|
|
jsdom: {
|
|
url: "http://localhost/",
|
|
},
|
|
},
|
|
setupFiles: "./src/test/setup.ts",
|
|
css: false,
|
|
},
|
|
});
|