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 May 15, 2024
1 parent 4f84534 commit bd9b6ec
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 @@ -249,7 +249,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 bd9b6ec

Please sign in to comment.