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

Commit

Permalink
Merge pull request #19 from krzkaczor/kk/fix-stack-traces
Browse files Browse the repository at this point in the history
Fix sourcemaps by avoiding requiring whole waffle
  • Loading branch information
Rahul Sethuram authored Mar 20, 2021
2 parents b67ad02 + 9ff4d8e commit 0aea47e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
14 changes: 11 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@types/node": "^14.14.32",
"chai": "^4.3.3",
"chai-as-promised": "^7.1.1",
"@types/chai-as-promised": "^7.1.3",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.31",
Expand Down
4 changes: 1 addition & 3 deletions test/counter.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import { ethers } from "hardhat";
import { ethers} 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(chaiAsPromised);
const { expect } = chai;

Expand Down

0 comments on commit 0aea47e

Please sign in to comment.