Skip to content

Commit

Permalink
wasm: increase timeout in tests (#7401)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot authored Sep 25, 2024
1 parent 103c5ad commit 77aa528
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/js/src/high-level/high-level.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ describe('high-level', () => {
const y = BitVec.const('y', 32);

await prove(Implies(Concat(x, y).eq(Concat(y, x)), x.eq(y)));
});
}, 10_000 /* timeout ms */);

it('finds x and y such that: x ^ y - 103 == x * y', async () => {
const { BitVec, isBitVecVal } = api.Context('main');
Expand Down Expand Up @@ -455,7 +455,7 @@ describe('high-level', () => {
await prove(Eq(arr2.select(0), FIVE_VAL));
await prove(Not(Eq(arr2.select(0), BitVec.val(6, 256))));
await prove(Eq(arr2.store(idx, val).select(idx), constArr.store(idx, val).select(idx)));
});
}, 10_000 /* timeout ms */);

it('Finds arrays that differ but that sum to the same', async () => {
const Z3 = api.Context('main');
Expand Down

0 comments on commit 77aa528

Please sign in to comment.