Skip to content

Commit

Permalink
tests: lower bootup-time threshold in api-test-pptr.js (#15649)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored Nov 30, 2023
1 parent 0f7289a commit 95373a6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion core/test/scenarios/api-test-pptr.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,14 @@ describe('Individual modes API', function() {
});

it('should compute ConsoleMessage results across a span of time', async () => {
const run = await api.startTimespan(state.page);
const run = await api.startTimespan(state.page, {
config: {
extends: 'lighthouse:default',
audits: [
{path: 'bootup-time', options: {thresholdInMs: 10}},
],
},
});

await setupTestPage();

Expand Down

0 comments on commit 95373a6

Please sign in to comment.