mirror of
https://github.com/SoPat712/Speeder.git
synced 2026-07-02 13:46:41 -04:00
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
const { defineConfig } = require("vitest/config");
|
|
|
|
module.exports = defineConfig({
|
|
test: {
|
|
environment: "jsdom",
|
|
clearMocks: true,
|
|
globals: true,
|
|
restoreMocks: true,
|
|
include: ["tests/**/*.test.js", "tests/**/*.spec.js"],
|
|
setupFiles: ["./tests/setup.js"]
|
|
}
|
|
});
|