Skip to content

Commit

Permalink
lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed Oct 8, 2020
1 parent 6abea87 commit e43ff18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/perf.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ async function createBrowser() {
async function runMeasures(browser, testCase, times) {
const measures = [];

for (let i = 0; i < times; i++) {
for (let i = 0; i < times; i += 1) {
const { page, close } = await browser.openPage(`http://${SERVER}:${PORT}/${APP}?${testCase}`);

const perf = await page.evaluate((_) => {
const perf = await page.evaluate(() => {
const { loadEventEnd, navigationStart } = performance.timing;
return loadEventEnd - navigationStart;
});
Expand Down
1 change: 1 addition & 0 deletions test/perf/tests/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const logReactMetrics = (
commitTime, // when React committed this update
interactions, // the Set of interactions belonging to this update
) => {
// eslint-disable-next-line no-console
console.info({
id,
phase,
Expand Down

0 comments on commit e43ff18

Please sign in to comment.