mirror of
https://github.com/harivansh-afk/Saas-Teamspace-2.git
synced 2026-04-15 03:00:47 +00:00
14 lines
332 B
TypeScript
14 lines
332 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,
|
|
});
|
|
|
|
// Set up environment variables for testing
|
|
process.env.BILLING_PLAN_ENV = 'test';
|