mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
* init e2e * updated/moved vitest, finished merge * fix bun picking up e2e tests * e2e: overwrite webserver config with env * e2e: added adapter configs * e2e: replaced image
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import "@testing-library/jest-dom";
|
|
import { afterEach } from "vitest";
|
|
import { cleanup } from "@testing-library/react";
|
|
|
|
// Automatically cleanup after each test
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|