Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
0xverin committed Jun 5, 2024
1 parent c846f5e commit ffd0531
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
})

0 comments on commit ffd0531

Please sign in to comment.