Skip to content
This repository has been archived by the owner on Jan 9, 2022. It is now read-only.

Commit

Permalink
Fix sourcemaps by avoiding requiring whole waffle
Browse files Browse the repository at this point in the history
  • Loading branch information
krzkaczor committed Mar 19, 2021
1 parent b67ad02 commit f377996
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/counter.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { ethers } from "hardhat";
import { ethers, waffle } from "hardhat";
import chai from "chai";
import chaiAsPromised from "chai-as-promised";
import { solidity } from "ethereum-waffle";
import { Counter__factory, Counter } from "../typechain";

chai.use(solidity);
chai.use(waffle.solidity);
chai.use(chaiAsPromised);
const { expect } = chai;

Expand Down

0 comments on commit f377996

Please sign in to comment.