We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d49c0e commit 472a6beCopy full SHA for 472a6be
table.mjs
@@ -15,7 +15,7 @@ async function readData() {
15
16
const measurements = await fs.promises.readdir(`${dir}/${group}/${bench}`);
17
for (const measurement of measurements) {
18
- const json = await import(`${dir}/${group}/${bench}/${measurement}/new/estimates.json`, { assert: { type: "json" } });
+ const json = await import(`${dir}/${group}/${bench}/${measurement}/new/estimates.json`, { with: { type: "json" } });
19
const duration_ms = json.default.mean.point_estimate / 1_000_000;
20
data[group][bench][measurement] ||= { duration_ms };
21
}
0 commit comments