[test] tweak test settings
- 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
This commit is contained in:
parent
24ef30bd2a
commit
7c9ebb3c31
|
@ -12,6 +12,11 @@ module.exports = {
|
|||
},
|
||||
},
|
||||
},
|
||||
mocha: {
|
||||
bail: true,
|
||||
slow: 200,
|
||||
timeout: 30 * 1000,
|
||||
},
|
||||
namedAccounts: {
|
||||
deployer: { default: 0 },
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue