
* fix: extends timeout for timed out test * fix: add dependent script to turbo test * fix: disable threading for test * fix: add timeout to vitest config * chore: remove test-ci script * fix: extends timeout to validator vitest config * chore: conditionally disabling vitest threading on CI
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 30000,
|
|
threads: !process.env.CI,
|
|
},
|
|
});
|