Skip to content

Commit 9a6daad

Browse files
committed
chrome 124
1 parent 3d1353e commit 9a6daad

File tree

5 files changed

+219
-212
lines changed

5 files changed

+219
-212
lines changed

Diff for: webdriver-ts-results/src/App.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ const KnownIssuesList = () => {
1717
renderItem={(issue) => (
1818
<List.Item>
1919
<Typography.Text className="known-issues__issue-code">
20-
<a id={issue.number.toFixed()} href={issue.link}>{issue.number}</a>
20+
<a id={issue.number.toFixed()} href={issue.link}>
21+
{issue.number}
22+
</a>
2123
</Typography.Text>{" "}
2224
{issue.text}
2325
</List.Item>
@@ -46,8 +48,8 @@ const App = () => {
4648

4749
const testEnvironmentInfo = (
4850
<p>
49-
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.4), Chrome 123.0.6312.59 (arm64) using
50-
the puppeteer benchmark driver with reduced tracing.
51+
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.4), Chrome for Testing 124.0.6367.91
52+
(arm64) using the puppeteer benchmark driver with reduced tracing.
5153
</p>
5254
);
5355

Diff for: webdriver-ts-results/src/components/BoxPlotTable/BoxPlotTableChart.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ const BoxPlotTableChart = ({ traces }: Props) => {
5151
options: {
5252
animation: false,
5353
maintainAspectRatio: false,
54+
minStats: "min",
55+
maxStats: "max",
56+
coef: 0,
5457
scales: {
5558
x: {
5659
type: "category",
@@ -74,7 +77,7 @@ const BoxPlotTableChart = ({ traces }: Props) => {
7477
}, [traces]);
7578

7679
return (
77-
<div style={{ height: "28rem" }}>
80+
<div style={{ height: "250px" }}>
7881
<canvas style={{ maxHeight: "100%" }} ref={chartRef}></canvas>
7982
</div>
8083
);

Diff for: webdriver-ts-results/src/components/BoxPlotTable/BoxPlotTableRow.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const BoxPlotTableRow = ({ frameworks, benchmark, results, currentSortKey, sortB
2525
}));
2626

2727
return (
28-
<tr key={benchmark.id} style={{ height: 400 }}>
28+
<tr key={benchmark.id} style={{ height: 250 }}>
2929
<th className="benchname">
3030
<button
3131
className={`button button__text ${currentSortKey === benchmark.id ? "sort-key" : ""}`}

0 commit comments

Comments
 (0)