Skip to content

Commit

Permalink
fixed dependency call to hardhat on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
santisiri committed Dec 17, 2020
1 parent 035f088 commit b912f63
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
pool: ""
}
},
ropsten: {
/* ropsten: {
url: `https://ropsten.infura.io/v3/${INFURA_API_KEY}`,
accounts: [ROPSTEN_PRIVATE_KEY],
deployedContracts: {
Expand All @@ -35,12 +35,12 @@ module.exports = {
moloch: "0x1fd169A4f5c59ACf79d0Fd5d91D1201EF1Bce9f1", // The original Moloch
pool: ""
}
},
}, */
coverage: {
url: "http://localhost:8555"
}
},
solc: {
solidity: {
version: "0.5.3",
settings: {
optimizer: {
Expand Down
2 changes: 1 addition & 1 deletion test/molochV2-multitoken.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { artifacts, ethereum, web3 } = require('@nomiclabs/hardhat')
const { artifacts, ethereum, web3 } = require('hardhat')
const chai = require('chai')
const { assert } = chai

Expand Down
2 changes: 1 addition & 1 deletion test/molochV2.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { artifacts, ethereum, web3 } = require('@nomiclabs/hardhat')
const { artifacts, ethereum, web3 } = require('hardhat')
const chai = require('chai')
const { assert } = chai

Expand Down
2 changes: 1 addition & 1 deletion test/molochV2Events.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { artifacts, ethereum, web3 } = require('@nomiclabs/hardhat')
const { artifacts, ethereum, web3 } = require('hardhat')
const chai = require('chai')
const { assert } = chai

Expand Down

0 comments on commit b912f63

Please sign in to comment.