Files

11 lines
199 B
TypeScript
Raw Permalink Normal View History

2025-10-23 20:14:59 -06:00
import { afterAll, beforeAll } from "vitest";
import { mockServerPool } from "./MockServerPool";
beforeAll(() => {
mockServerPool.listen();
});
afterAll(() => {
mockServerPool.close();
});