We have migrated the testing framework from Jest to Vitest for the Docs application. This change includes updates to test files, configuration files, and the addition of new setup files for Vitest.
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
import '@testing-library/jest-dom/vitest';
|
|
import * as dotenv from 'dotenv';
|
|
|
|
dotenv.config({ path: './.env.test', quiet: true });
|