From ffd053116f1e417e1e4b5b9ef69fad027149a106 Mon Sep 17 00:00:00 2001 From: Verin1005 Date: Wed, 5 Jun 2024 21:10:58 +0800 Subject: [PATCH] fmt --- test/contracts.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/test/contracts.ts b/test/contracts.ts index 1db225a..7fd67e2 100644 --- a/test/contracts.ts +++ b/test/contracts.ts @@ -2,16 +2,16 @@ import { ethers } from "hardhat" import { expect } from "chai" // todo: add more tests describe("contracts", () => { - it("should return the bytecode of the contracts", async () => { - const A1Contract = await ethers.getContractFactory("A1") - const A6Contract = await ethers.getContractFactory("A6") - const A20Contract = await ethers.getContractFactory("A20") + it("should return the bytecode of the contracts", async () => { + const A1Contract = await ethers.getContractFactory("A1") + const A6Contract = await ethers.getContractFactory("A6") + const A20Contract = await ethers.getContractFactory("A20") - expect(A1Contract.bytecode).to.be.ok - expect(A6Contract.bytecode).to.be.ok - expect(A20Contract.bytecode).to.be.ok - console.log("A1 bytecodeπŸš€πŸš€πŸš€πŸš€πŸš€πŸš€:", A1Contract.bytecode) - console.log("A6 bytecodeπŸš€πŸš€πŸš€πŸš€πŸš€:", A6Contract.bytecode) - console.log("A20 bytecodeπŸš€πŸš€πŸš€πŸš€πŸš€:", A20Contract.bytecode) - }) + expect(A1Contract.bytecode).to.be.ok + expect(A6Contract.bytecode).to.be.ok + expect(A20Contract.bytecode).to.be.ok + console.log("A1 bytecodeπŸš€πŸš€πŸš€πŸš€πŸš€πŸš€:", A1Contract.bytecode) + console.log("A6 bytecodeπŸš€πŸš€πŸš€πŸš€πŸš€:", A6Contract.bytecode) + console.log("A20 bytecodeπŸš€πŸš€πŸš€πŸš€πŸš€:", A20Contract.bytecode) + }) })