Skip to content

Commit 733c2ed

Browse files
authored
fix: increase timeouts (#131)
The recent playwright version of FF is now very slow.
1 parent 026af3f commit 733c2ed

File tree

2 files changed

+2
-2
lines changed
  • packages

2 files changed

+2
-2
lines changed

packages/interface-blockstore-tests/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export function interfaceBlockstoreTests (test) {
286286
})
287287

288288
it('many (1200)', async function () {
289-
this.timeout(360 * 1000)
289+
this.timeout(640 * 1000)
290290
const b = store.batch()
291291
const count = 1200
292292

packages/interface-datastore-tests/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ export function interfaceDatastoreTests (test) {
259259
})
260260

261261
it('many (3 * 400)', async function () {
262-
this.timeout(320 * 1000)
262+
this.timeout(640 * 1000)
263263
const b = store.batch()
264264
const count = 400
265265
for (let i = 0; i < count; i++) {

0 commit comments

Comments
 (0)