Skip to content

Commit

Permalink
fix: increase timeouts (#131)
Browse files Browse the repository at this point in the history
The recent playwright version of FF is now very slow.
  • Loading branch information
achingbrain authored Jun 22, 2022
1 parent 026af3f commit 733c2ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/interface-blockstore-tests/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export function interfaceBlockstoreTests (test) {
})

it('many (1200)', async function () {
this.timeout(360 * 1000)
this.timeout(640 * 1000)
const b = store.batch()
const count = 1200

Expand Down
2 changes: 1 addition & 1 deletion packages/interface-datastore-tests/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export function interfaceDatastoreTests (test) {
})

it('many (3 * 400)', async function () {
this.timeout(320 * 1000)
this.timeout(640 * 1000)
const b = store.batch()
const count = 400
for (let i = 0; i < count; i++) {
Expand Down

0 comments on commit 733c2ed

Please sign in to comment.