| 1 | import { describe, expect, it, vi, beforeEach, afterEach, afterAll } from "vitest"; |
| 2 | |
| 3 | const { formatFileNameMock, openFileMock } = vi.hoisted(() => ({ |
| 4 | formatFileNameMock: vi.fn(async (path: string) => path), |
nothing calls this directly
no test coverage detected