Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
fvictorio committed Feb 21, 2022
1 parent 727e781 commit a41bb6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ describe("test suite 1", function () {
it("should start with block number 0", async function () {
const blockNumber = await network.provider.send("eth_blockNumber");

console.log('blockNumber:', blockNumber);
assert(blockNumber === "0x0");

// send a tx to increase the block number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ describe("test suite 2", function () {
it("should start with block number 0", async function () {
const blockNumber = await network.provider.send("eth_blockNumber");

console.log('blockNumber:', blockNumber);
assert(blockNumber === "0x0");

// send a tx to increase the block number
Expand Down

0 comments on commit a41bb6a

Please sign in to comment.