updated/moved vitest, finished merge

This commit is contained in:
dswbx
2025-04-02 20:39:08 +02:00
parent fd4bbccfb7
commit e3628a3dc8
6 changed files with 47 additions and 45 deletions
+8
View File
@@ -0,0 +1,8 @@
import "@testing-library/jest-dom";
import { afterEach } from "vitest";
import { cleanup } from "@testing-library/react";
// Automatically cleanup after each test
afterEach(() => {
cleanup();
});