mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-02-01 17:36:51 +00:00
* feat: add --shard command * chore: increase timeout for shard tests * chore: use relative path for spec * chore: add try/catch to plugin
8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 50_000,
|
|
},
|
|
})
|