mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-21 14:23:24 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
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();
|
|
}); |