mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 30000,
|
|
hookTimeout: 30000,
|
|
globals: true,
|
|
environment: "node",
|
|
},
|
|
});
|