Skip to content

Commit 08c9aeb

Browse files
committed
chrome 137; move butterfloat temporarily to broken-frameworks
1 parent 9aaae3e commit 08c9aeb

File tree

23 files changed

+220
-212
lines changed

23 files changed

+220
-212
lines changed

webdriver-ts-results/src/App.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const KnownIssuesList = () => {
3030

3131
const App = () => {
3232
// eslint-disable-next-line no-constant-condition
33-
const version = "Chrome 136.0.7103.93"
33+
const version = "Chrome 137.0.7151.55"
3434
const disclaimer = false ? (
3535
<div>
3636
<h2>js-framework-benchmark results for {version}</h2>
@@ -69,6 +69,9 @@ const App = () => {
6969
</a>{" "}
7070
to compute the overall result.
7171
</p>
72+
<p>
73+
Starting with chrome 137 we're benchmarking the non-keyed implementations only for even chrome versions.
74+
</p>
7275
<main>
7376
<SelectionToolbar showDurationSelection={true} />
7477
<div>

webdriver-ts-results/src/results.ts

Lines changed: 209 additions & 209 deletions
Large diffs are not rendered by default.

webdriver-ts-results/src/store.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ for (let result of rawResults) {
4949
results.push({ framework: rawFrameworks[result.f].name, benchmark: rawBenchmarks[b.b].id, results: values });
5050
}
5151
}
52-
console.log(results);
52+
53+
allFrameworks.forEach((f) => {
54+
if (!results.some((r) => r.framework === f.name)) {
55+
allFrameworks.delete(f);
56+
}
57+
})
5358

5459
const resultLookup = convertToMap(results);
5560

webdriver-ts/results.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)