9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import "./no-instrumentation";
|
|
import "@testing-library/jest-dom/vitest";
|
|
import { afterEach } from "vitest";
|
|
import { cleanup } from "@testing-library/react";
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|