Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 8a7d607

Browse files
committed
Adjust jetstream init
1 parent 668fedd commit 8a7d607

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/jetstream.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export async function test(context, commands) {
44
await commands.measure.start(
55
'https://browserbench.org/JetStream2.2/', 'None');
66

7-
await commands.wait.byXpath('//a[text()="Start Test"]', 2 * 60 * 1000)
7+
await commands.wait.byXpath('//a[text()="Start Test"]', 5 * 60 * 1000)
88
await commands.js.run('JetStream.start()');
99

1010
const score = await utils.waitForThrottled(commands,

scripts/motionmark.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ export async function test(context, commands) {
44
await commands.measure.start(
55
'https://browserbench.org/MotionMark1.3', 'None');
66

7-
await commands.wait.byXpath('//button[text()="Run Benchmark"]', 2 * 60 * 1000)
7+
await commands.wait.byXpath('//button[text()="Run Benchmark"]', 5 * 60 * 1000)
8+
89
await commands.click.byIdAndWait('start-button');
910

1011
const score = await utils.waitForThrottled(commands,

0 commit comments

Comments
 (0)