From 77aa5280dfd4960f615e98b669ff411c774598c5 Mon Sep 17 00:00:00 2001 From: Kevin Gibbons Date: Wed, 25 Sep 2024 10:33:14 -0700 Subject: [PATCH] wasm: increase timeout in tests (#7401) --- src/api/js/src/high-level/high-level.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/js/src/high-level/high-level.test.ts b/src/api/js/src/high-level/high-level.test.ts index 53a0e724b1..f36291764e 100644 --- a/src/api/js/src/high-level/high-level.test.ts +++ b/src/api/js/src/high-level/high-level.test.ts @@ -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'); @@ -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');