@ember/app-blueprint
Version:
Blueprint for next generation of Ember apps
14 lines (11 loc) • 350 B
JavaScript
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),
},
});