mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 09:37:55 +08:00
13 lines
275 B
JavaScript
13 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"],
|
|
}
|
|
};
|
|
});
|