From 011ac1d3ab0a580081a35a4bfc689306c8d52aa4 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 2 Jan 2026 01:49:29 +0000 Subject: [PATCH] feat: add jest-dom matchers reference for vitest in test shims --- frontend/src/types/test-shims.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/types/test-shims.d.ts b/frontend/src/types/test-shims.d.ts index 8a2cc62c..6f217520 100644 --- a/frontend/src/types/test-shims.d.ts +++ b/frontend/src/types/test-shims.d.ts @@ -1,4 +1,8 @@ // Test-only type shims to satisfy strict type-checking in CI + +// Import jest-dom matchers for vitest +/// + // Properly type the default export from @testing-library/user-event declare module '@testing-library/user-event' { import type { UserEvent } from '@testing-library/user-event/dist/types/setup/setup'