mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
clearMocks: true,
|
|
testTimeout: process.env.CI ? 120_000 : 5_000,
|
|
onConsoleLog(log) {
|
|
if (log.includes('Port is already')) {
|
|
return false
|
|
}
|
|
},
|
|
},
|
|
})
|