Skip to content

Commit

Permalink
fixup! extend timeout for queries in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
divarvel committed Dec 8, 2023
1 parent b8e1530 commit 844eddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js-tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ test("third-party blocks", function(t) {

let r1 = rule`g($group) <- group($group) trusting ${thirdPartyRoot.getPublicKey()}`;
let facts = auth.queryWithLimits(r1, {
max_time_micro: 10000
max_time_micro: 100000
});
t.equal(facts.length, 1, "correct number of query results");
t.equal(facts[0].toString(), `g("admin")`, "correct query result");
Expand Down

0 comments on commit 844eddd

Please sign in to comment.