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

Commit e32cb45

Browse files
committed
fix(browser-service-worker): increase test timeout
1 parent 7af9d73 commit e32cb45

File tree

2 files changed

+3
-1
lines changed
  • examples/browser-service-worker/tests
  • lib/test-util-ipfs-example/playwright

2 files changed

+3
-1
lines changed

examples/browser-service-worker/tests/test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ const play = test.extend({
66
...playwright.servers(),
77
});
88

9+
play.setTimeout(60 * 1000)
10+
911
play.describe('browser service worker:', () => {
1012
// DOM
1113
const linkDOM = "a"

lib/test-util-ipfs-example/playwright/servers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const servers = (serverConfiguration = []) => {
77
// We pass a tuple to specify fixtures options.
88
// In this case, we mark this fixture as worker-scoped.
99
servers: [ async ({}, use, workerInfo) => {
10-
let promiseServers = [];
10+
const promiseServers = [];
1111
const servers = [];
1212
const configurations = [...serverConfiguration]
1313

0 commit comments

Comments
 (0)