mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
12 lines
286 B
TypeScript
12 lines
286 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,
|
|
});
|
|
|
|
beforeEach(() => vi.clearAllMocks());
|