mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import "@testing-library/jest-dom";
|
|
import { afterEach } from "vitest";
|
|
import { cleanup } from "@testing-library/react";
|
|
|
|
// Automatically cleanup after each test
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|