mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
11 lines
173 B
TypeScript
11 lines
173 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 60_000,
|
|
},
|
|
benchmark: {
|
|
include: ['**/*.bench.ts'],
|
|
},
|
|
});
|