mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-14 00:30:53 +00:00
7c9ebb3c31
- stop on first failure (quick feedback) - do not warn about slow test before 100 ms (solidity tests are inherently slow) - set test timeout to 30 seconds
29 lines
442 B
JavaScript
29 lines
442 B
JavaScript
require("@nomiclabs/hardhat-waffle")
|
|
require("hardhat-deploy")
|
|
require("hardhat-deploy-ethers")
|
|
|
|
module.exports = {
|
|
solidity: {
|
|
version: "0.8.8",
|
|
settings: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 1000,
|
|
},
|
|
},
|
|
},
|
|
mocha: {
|
|
bail: true,
|
|
slow: 200,
|
|
timeout: 30 * 1000,
|
|
},
|
|
namedAccounts: {
|
|
deployer: { default: 0 },
|
|
},
|
|
networks: {
|
|
hardhat: {
|
|
tags: ["local"],
|
|
},
|
|
},
|
|
}
|