vitest.web.perf.config.ts 461 B

123456789101112131415
  1. import { defineConfig } from 'vitest/config'
  2. import webConfig from './vitest.web.config.ts'
  3. // Manual high-cardinality diagnostics stay outside vitest.web.config.ts's
  4. // .e2e.ts/.snapshot.ts inventory and therefore outside the CI web gate.
  5. export default defineConfig({
  6. ...webConfig,
  7. test: {
  8. ...webConfig.test,
  9. include: ['apps/web/tests/**/*.perf.ts'],
  10. disableConsoleIntercept: true,
  11. hookTimeout: 180_000,
  12. testTimeout: 600_000,
  13. },
  14. })