upgrade packages + improve typing

This commit is contained in:
seavor 2026-04-14 11:34:29 -05:00
parent fd55f4fb7f
commit 19f5eefdd2
138 changed files with 4504 additions and 11015 deletions

View file

@ -1,2 +1,9 @@
// ensure jest-dom is always available during testing to cut down on boilerplate
import '@testing-library/jest-dom/vitest';
// With isolate: false, all test files share the same module context.
// Restore all mocks/spies after each test to prevent leakage between tests.
afterEach(() => {
vi.restoreAllMocks();
vi.useRealTimers();
});