mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-08 07:41:10 +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,
|
|
},
|
|
});
|