mirror of
https://github.com/teamchong/pxpipe.git
synced 2026-07-22 02:02:51 +02:00
13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
const TEST_FILE_PATTERNS = ['tests/**/*.test.ts'];
|
|
const TEST_TIMEOUT_MS = 30_000;
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: TEST_FILE_PATTERNS,
|
|
environment: 'node',
|
|
testTimeout: TEST_TIMEOUT_MS,
|
|
},
|
|
});
|