show file size, on next step too

This commit is contained in:
kvan7
2026-08-30 09:43:08 -05:00
parent a58c5c21f8
commit 657d286bfd
+2
View File
@@ -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}`);
}