UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

17 lines (12 loc) 247 B
import "reflect-metadata"; import { afterEach, beforeEach, vi } from "vitest"; // /** // * @remarks // * https://vitest.dev/config/#setupfiles // */ beforeEach(() => { vi.clearAllMocks(); }); afterEach(() => { vi.restoreAllMocks(); });