Remove delay for DioneDispute unit test
This commit is contained in:
parent
c74ec4db26
commit
301de34cc3
@ -40,7 +40,7 @@ describe("DioneDispute", function () {
|
|||||||
.to.emit(dioneDispute, 'NewVote')
|
.to.emit(dioneDispute, 'NewVote')
|
||||||
.withArgs(dhash, addr3.address);
|
.withArgs(dhash, addr3.address);
|
||||||
|
|
||||||
await delay(2000);
|
await ethers.provider.send("evm_increaseTime", [2]);
|
||||||
|
|
||||||
await expect(dioneDispute.finishDispute(dhash))
|
await expect(dioneDispute.finishDispute(dhash))
|
||||||
.to.emit(dioneDispute, 'DisputeFinished')
|
.to.emit(dioneDispute, 'DisputeFinished')
|
||||||
@ -58,8 +58,4 @@ describe("DioneDispute", function () {
|
|||||||
expect(await dioneStaking.minerStake(owner.address))
|
expect(await dioneStaking.minerStake(owner.address))
|
||||||
.to.equal(ethers.constants.WeiPerEther.mul(12000));
|
.to.equal(ethers.constants.WeiPerEther.mul(12000));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
function delay(ms: number): Promise<void> {
|
|
||||||
return new Promise( resolve => setTimeout(resolve, ms) );
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user