Commit f7e5c664 authored by Nicolas "Norswap" Laurent's avatar Nicolas "Norswap" Laurent Committed by norswap

extend timeouts to accomodate my slow-ass setup

parent 8e5d6bce
...@@ -48,5 +48,5 @@ describe("Challenge contract", function () { ...@@ -48,5 +48,5 @@ describe("Challenge contract", function () {
// the real issue here is from step 0->1 when we write the input hash // the real issue here is from step 0->1 when we write the input hash
// TODO: prove the challenger wrong? // TODO: prove the challenger wrong?
}).timeout(120000) }).timeout(200_000)
}) })
...@@ -33,7 +33,7 @@ describe("MIPS contract", function () { ...@@ -33,7 +33,7 @@ describe("MIPS contract", function () {
} }
console.log(i, root) console.log(i, root)
} }
}); }).timeout(40_000);
it("oracle should work", async function () { it("oracle should work", async function () {
let root = await addPreimages(mm, trieOracle) let root = await addPreimages(mm, trieOracle)
...@@ -58,6 +58,6 @@ describe("MIPS contract", function () { ...@@ -58,6 +58,6 @@ describe("MIPS contract", function () {
} }
expect(out1).to.equal(1) expect(out1).to.equal(1)
expect(out2).to.equal(1) expect(out2).to.equal(1)
}).timeout(120000); }).timeout(200_000);
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment