Don't report time for each page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Cat /dev/Nulo 2022-11-25 20:04:16 -03:00
parent 9bd519129a
commit 7a6e83f035

View file

@ -115,9 +115,7 @@ async function recurseDirectory(reports, path) {
else {
if (!file.name.endsWith(".html")) continue;
const content = await readFile(filePath, "utf-8");
console.time(filePath);
reports[path] = await processFile(content);
console.timeEnd(filePath);
}
}
}