Skip to content

Commit 68bd03d

Browse files
bakkotarbipher
authored andcommitted
wasm: increase timeout in tests (Z3Prover#7401)
1 parent e71fedb commit 68bd03d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/js/src/high-level/high-level.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ describe('high-level', () => {
380380
const y = BitVec.const('y', 32);
381381

382382
await prove(Implies(Concat(x, y).eq(Concat(y, x)), x.eq(y)));
383-
});
383+
}, 10_000 /* timeout ms */);
384384

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

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

0 commit comments

Comments
 (0)