Change path

This commit is contained in:
Sidharth Vinod
2024-01-26 01:15:43 +05:30
parent 441deaffc9
commit 6702d41840
2 changed files with 8 additions and 8 deletions

View File

@@ -56,8 +56,8 @@ const percentageDifference = (
};
const main = async () => {
const oldStats = await readStats('./cypress/snapshots/runtimes/base/**/*.csv');
const newStats = await readStats('./cypress/snapshots/runtimes/head/**/*.csv');
const oldStats = await readStats('./snapshots/runtimes/base/**/*.csv');
const newStats = await readStats('./snapshots/runtimes/head/**/*.csv');
const fullData: string[][] = [];
const changed: string[][] = [];
for (const [fileName, runtimes] of Object.entries(newStats)) {