Skip to content

Commit 1d4a25d

Browse files
Juhyung Parksgkim126
authored andcommitted
Increase the timeout of Timelock test
1 parent 2ce612d commit 1d4a25d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/src/e2e.long/timelock.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,14 @@ describe("Timelock", function() {
7676
await checkTx(tracker, true);
7777
});
7878

79-
80-
it(`Minted at block 1, send transfer with Timelock::BlockAge(0)`, async function() { 
79+
it(`Minted at block 1, send transfer with Timelock::BlockAge(0)`, async function() {
8180
const tracker = await sendTxWithTimelock({
8281
type: "blockAge",
8382
value: 0
8483
});
8584
await checkTx(tracker, true);
8685
});
8786

88-
8987
it("send transfer with Timelock::Time(0)", async function() {
9088
const tracker = await sendTxWithTimelock({
9189
type: "time",
@@ -237,7 +235,7 @@ describe("Timelock", function() {
237235
expect(await node.getBestBlockNumber()).to.equal(2);
238236
await checkTx(tracker1, false);
239237
await checkTx(tracker2, true);
240-
});
238+
}).timeout(10_000);
241239
});
242240

243241
describe("Multiple timelocks", async function() {

0 commit comments

Comments
 (0)