mirror of
https://github.com/allinssl/allinssl.git
synced 2025-12-15 09:55:37 +08:00
13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
include: ["packages/**/test/*.spec.ts"],
|
|
setupFiles: ["./.test/setup.ts"],
|
|
hookTimeout: 30000,
|
|
testTimeout: 30000,
|
|
},
|
|
});
|