This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docs/src/frontend/apps/impress/vitest.setup.ts
Anthony LC 1eee24dc19 ♻️(docs-app) Switch from Jest tests to Vitest
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.
2025-08-28 11:11:29 +02:00

5 lines
131 B
TypeScript

import '@testing-library/jest-dom/vitest';
import * as dotenv from 'dotenv';
dotenv.config({ path: './.env.test', quiet: true });