diff --git a/renderer/specs/vitest.setup.ts b/renderer/specs/vitest.setup.ts index 6adf7024..86804d6a 100644 --- a/renderer/specs/vitest.setup.ts +++ b/renderer/specs/vitest.setup.ts @@ -42,6 +42,8 @@ export const setupFetchMock = () => { ); if (fs.existsSync(filePath)) { console.log(`file exists ${filePath}`); + const stat = fs.statSync(filePath); + console.log(`file size ${stat.size}`); } else { console.error(`file does not exist ${filePath}`); }