UNPKG

@ember/app-blueprint

Version:
14 lines (11 loc) 350 B
import { defineConfig } from 'vitest/config'; const ONE_SECOND = 1_000; export default defineConfig({ /** * add a 3x factor for windows tests... because windows 😭 */ test: { testTimeout: 240 * ONE_SECOND * (process.platform === 'win32' ? 3 : 1), hookTimeout: 240 * ONE_SECOND * (process.platform === 'win32' ? 3 : 1), }, });