Prepare tests for hardhat-exposed transition (#3930)

Co-authored-by: Francisco <frangio.1@gmail.com>
This commit is contained in:
Hadrien Croubois
2023-01-12 09:51:29 +01:00
committed by GitHub
parent d210847e28
commit 7c6e289782
13 changed files with 369 additions and 418 deletions

11
test/helpers/math.js Normal file
View File

@ -0,0 +1,11 @@
module.exports = {
// sum of integer / bignumber
sum: (...args) => args.reduce((acc, n) => acc + n, 0),
BNsum: (...args) => args.reduce((acc, n) => acc.add(n), web3.utils.toBN(0)),
// min of integer / bignumber
min: (...args) => args.slice(1).reduce((x, y) => x < y ? x : y, args[0]),
BNmin: (...args) => args.slice(1).reduce((x, y) => x.lt(y) ? x : y, args[0]),
// max of integer / bignumber
max: (...args) => args.slice(1).reduce((x, y) => x > y ? x : y, args[0]),
BNmax: (...args) => args.slice(1).reduce((x, y) => x.gt(y) ? x : y, args[0]),
};