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