Files
speeder/vitest.config.js

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"]
}
});