Skip to content

Commit d9bb064

Browse files
committed
increase simultaneity threshold. beep boop
1 parent e844382 commit d9bb064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/test/e2e/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ async function timeToAppear(page: Page, selector: string): Promise<number> {
9090
export async function expectSimultaneous(page: Page, selectors: string[]) {
9191
const times = await Promise.all(selectors.map((sel) => timeToAppear(page, sel)))
9292
times.sort()
93-
expect(times[times.length - 1] - times[0]).toBeLessThan(20)
93+
expect(times[times.length - 1] - times[0]).toBeLessThan(40)
9494
}

0 commit comments

Comments
 (0)