mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig(({ comand, mode }) => {
|
|
return {
|
|
plugins: [],
|
|
test: {
|
|
global: true,
|
|
environment: "jsdom",
|
|
setupFiles: ["./vite.setup.js"],
|
|
}
|
|
};
|
|
});
|