Skip to content

Commit

Permalink
remove custom timeout on problematic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
finn-block committed Nov 14, 2023
1 parent e4217b5 commit 98ef7bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/agent/tests/sync-manager.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ describe('SyncManagerLevel', () => {
localDwnQueryReply = queryResponse.reply as RecordsQueryReply;
expect(localDwnQueryReply.status.code).to.equal(200); // Query was successfully executed.
expect(localDwnQueryReply.entries).to.have.length(1); // Record does exist on local DWN.
}).timeout(5000);
});
});

describe('push()', () => {
Expand Down Expand Up @@ -342,7 +342,7 @@ describe('SyncManagerLevel', () => {
remoteDwnQueryReply = queryResponse.reply as RecordsQueryReply;
expect(remoteDwnQueryReply.status.code).to.equal(200); // Query was successfully executed.
expect(remoteDwnQueryReply.entries).to.have.length(1); // Record does exist on remote DWN.
}).timeout(5000);
});
});
});
});
});

0 comments on commit 98ef7bc

Please sign in to comment.