Remove rogue comment

This commit is contained in:
ziebam 2024-09-14 14:05:40 +02:00
parent ef3385392c
commit 353dfb10a2

View File

@ -10,8 +10,6 @@ export function __setMockFiles(newMockFiles: Record<string, string | null>) {
mockFiles = newMockFiles;
}
// A custom version of `readdirSync` that reads from the special mocked out
// file list set via __setMockFiles
export const writeFile = vi.fn(async (filePath: string, content: string) => {
mockFiles[filePath] = content;
});