aboutsummaryrefslogtreecommitdiff
path: root/src/lib/test-setup.js
blob: 45b115adc65cb8a3c46ec508b9e294764c1f2cf3 (plain) (blame)
1
2
3
4
5
6
7
import "@testing-library/jest-dom/vitest";
import { afterEach } from "vitest";
import { cleanup } from "@testing-library/svelte";

afterEach(() => {
  cleanup();
});