[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:
Mark Spanbroek 2023-01-25 13:59:55 +01:00 committed by markspanbroek
parent 24ef30bd2a
commit 7c9ebb3c31
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ module.exports = {
},
},
},
mocha: {
bail: true,
slow: 200,
timeout: 30 * 1000,
},
namedAccounts: {
deployer: { default: 0 },
},