### Fixed

- Fixed an issue where using fast synchronisation caused a TypeError in some environments (#953).
This commit is contained in:
vorotamoroz
2026-06-12 11:33:07 +01:00
parent 0856693aac
commit 295dc1392a
11 changed files with 186 additions and 74 deletions
+5
View File
@@ -1,3 +1,8 @@
/**
* @file vitest.config.unit.ts
* @description Configuration for running unit tests in Node.js (excluding browser harnesses, E2E, and database integration tests).
* This is executed during local development via `npm run test:unit` (or with coverage via `npm run test:unit:coverage`), and automatically in the GitHub Actions `unit-ci` workflow.
*/
import { defineConfig, mergeConfig } from "vitest/config";
import viteConfig from "./vitest.config.common";