mirror of
https://github.com/YuzuZensai/Pien-Studio.git
synced 2026-09-02 14:18:35 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import "fake-indexeddb/auto";
|
|
import "@testing-library/jest-dom/vitest";
|
|
import { cleanup } from "@testing-library/react";
|
|
import { afterEach } from "vitest";
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|