Skip to content

Commit d5b1e83

Browse files
committed
results for round 8
1 parent 9575ac7 commit d5b1e83

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

webdriver-ts-results/src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,15 +162,15 @@ class App extends React.Component<{}, State> {
162162
}
163163
render() {
164164
let disclaimer = (false) ? (<div>
165-
<h2>Results for js web frameworks benchmark – round 7</h2>
166-
<p>Go here for the accompanying article <a href="http://www.stefankrause.net/wp/?p=454">http://www.stefankrause.net/wp/?p=454</a>. Source code can be found in the github <a href="https://github.com/krausest/js-framework-benchmark">repository</a>.</p>
165+
<h2>Results for js web frameworks benchmark – round 8</h2>
166+
<p>Go here for the accompanying article <a href="http://www.stefankrause.net/wp/?p=504">http://www.stefankrause.net/wp/?p=504</a>. Source code can be found in the github <a href="https://github.com/krausest/js-framework-benchmark">repository</a>.</p>
167167
</div>) :
168168
(<p>Warning: These results are preliminary - use with caution (they may e.g. be from different browser versions).Official results are published on my <a href="http://www.stefankrause.net/">blog</a>.</p>);
169169

170170
return (
171171
<div>
172172
{disclaimer}
173-
<p>The benchmark was run on a MacBook Pro 15 (2,5 GHz i7, 16 GB RAM, OSX 10.13.1, Chrome 62.0.3202.94 (64-bit))</p>
173+
<p>The benchmark was run on a MacBook Pro 15 (2,5 GHz i7, 16 GB RAM, OSX 10.13.1, Chrome 69.0.3497.100 (64-bit))</p>
174174
<SelectBar benchmarksCPU={this.state.benchmarksCPU}
175175
benchmarksStartup={this.state.benchmarksStartup}
176176
benchmarksMEM={this.state.benchmarksMEM}

webdriver-ts-results/src/ResultTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const CpuResultsTable = ({data, currentSortKey, sortBy} : {data: ResultTableData
4141
const StartupResultsTable = ({data, currentSortKey, sortBy} : {data: ResultTableData, currentSortKey: string, sortBy: (name:string) => void}) => {
4242
return data.resultsStartup.length==0 ? null :
4343
(<div>
44-
<h3>Startup metrics</h3>
44+
<h3>Startup metrics (lighthouse with mobile simulation)</h3>
4545
<table className='results'>
4646
<thead>
4747
<tr>

0 commit comments

Comments
 (0)