Skip to content

Commit

Permalink
chrome 121 results
Browse files Browse the repository at this point in the history
  • Loading branch information
krausest committed Jan 26, 2024
1 parent cb584b3 commit d3ab786
Show file tree
Hide file tree
Showing 5 changed files with 3,775 additions and 3,818 deletions.
2 changes: 1 addition & 1 deletion webdriver-ts-results/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const App = () => {

const testEnvironmentInfo = (
<p>
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.1.2), Chrome 120.0.6099.62 (arm64) using
The benchmark was run on a MacBook Pro 14 (32 GB RAM, 8/14 Cores, OSX 14.3), Chrome 121.0.6167.85 (arm64) using
the puppeteer benchmark driver with reduced tracing.
</p>
);
Expand Down
3 changes: 1 addition & 2 deletions webdriver-ts-results/src/components/ResultTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import { DisplayMode, BenchmarkType, FrameworkType, CpuDurationMode } from "../Common";
import CpuResultsTable from "./tables/CpuResultsTable";
import MemResultsTable from "./tables/MemResultsTable";
import StartupResultsTable from "./tables/StartupResultsTable";
// import StartupResultsTable from "./tables/StartupResultsTable";
import { benchmarks } from "../results";
import { useRootStore } from "../reducer";
import SizeResultsTable from "./tables/SizeResultsTable";
Expand Down Expand Up @@ -79,7 +79,6 @@ const ResultTable = ({ type }: Props) => {
<div className="results__table-container">
<table className="results__table">
<CpuResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
<StartupResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
<MemResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
<SizeResultsTable currentSortKey={currentSortKey} sortBy={sortBy} data={data} />
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const SizeResultsTable = ({ data, currentSortKey, sortBy }: Props) => {
<thead>
<tr>
<td className="description">
<h3>Transferred Size (in kBs) [Experimental, please post <a href="https://github.com/krausest/js-framework-benchmark/issues/1340#issuecomment-1793802128">feedback</a>]</h3>
<h3>Transferred size (in kBs) and first paint</h3>
</td>
</tr>
</thead>
Expand Down
Loading

0 comments on commit d3ab786

Please sign in to comment.