diff --git a/test/suites/zombie/test_basic.ts b/test/suites/zombie/test_basic.ts index fdbf4c3e..12780400 100644 --- a/test/suites/zombie/test_basic.ts +++ b/test/suites/zombie/test_basic.ts @@ -109,35 +109,5 @@ describeSuite({ }, }); - it({ - id: "T07", - title: "Pause/Resume a node", - timeout: 600000, - test: async function () { - - // await context.pauseNode("alice"); - - await context.killNode("alice"); - const status = await context.isUp("alice"); - - log(status); - expect(status).toBe(false) - // expect(await context.isUp("alith"), "Alith node is not running").toBe(true); - // const blockBefore = (await paraApi.rpc.chain.getBlock()).block.header.number.toNumber(); - // await context.pauseNode("alith"); - // log("waiting 20s and checking block production is paused"); - // await timer(20000); - // const blockAfter = (await paraApi.rpc.chain.getBlock()).block.header.number.toNumber(); - // expect(blockBefore).to.be.equal(blockAfter); - // expect(await context.isUp("alith"), "Alith node is not paused").toBe(false); - - // await context.resumeNode("alith"); - // await context.waitBlock(1, "parachain", "quantity"); - // const blockAfterResume = ( - // await paraApi.rpc.chain.getBlock() - // ).block.header.number.toNumber(); - // expect(blockAfterResume).to.be.greaterThan(blockAfter); - }, - }); }, });