Roo-Code/vitest-setup.ts
2025-05-14 21:40:25 -07:00

11 lines
248 B
TypeScript

import '@testing-library/jest-dom/vitest';
import failOnConsole from 'vitest-fail-on-console';
failOnConsole({
shouldFailOnDebug: true,
shouldFailOnError: true,
shouldFailOnInfo: true,
shouldFailOnLog: true,
shouldFailOnWarn: true,
});