feat: re-introduce regression testing suite with pnpm

This commit is contained in:
2025-12-18 12:03:24 +01:00
parent d386bb9825
commit a4b7045200
7 changed files with 1792 additions and 13 deletions

10
src/tests/setup.ts Normal file
View File

@@ -0,0 +1,10 @@
import '@testing-library/jest-dom';
import { expect, afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import * as matchers from '@testing-library/jest-dom/matchers';
expect.extend(matchers);
afterEach(() => {
cleanup();
});