Skip to content

Commit

Permalink
💄 Prettify
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Dec 11, 2023
1 parent b65807d commit e641153
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/Greeter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ describe("Greeter", function () {
let greeter: Greeter;

beforeEach(async function () {
greeter = await hre.ethers.deployContract("Greeter", ["Hello, Hardhat!"], deployerAccount);
greeter = await hre.ethers.deployContract(
"Greeter",
["Hello, Hardhat!"],
deployerAccount,
);
await greeter.waitForDeployment();
});

Expand Down

0 comments on commit e641153

Please sign in to comment.