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 571a934 commit 96c7402Copy full SHA for 96c7402
index.js
@@ -84,12 +84,12 @@ async function recalc_scores (runs_dir) {
84
const run = await read_compressed(`./${runs_dir}/${r}`)
85
console.log(`Calculating score for run ${runs_dir}/${r} (${i}/${run_count})`)
86
const score = score_run(run, new_run, test_to_areas)
87
- const row = [
+ const row = {
88
date,
89
- run.run_info.revision.substring(0, 9),
90
- run.run_info.browser_version,
91
- ...score
92
- ]
+ wpt_revision: run.run_info.revision.substring(0, 9),
+ servo_revision: run.run_info.browser_version,
+ scores: score
+ }
93
94
scores.push(row)
95
}
0 commit comments