Skip to content

Conversation

rackstar
Copy link
Contributor

@rackstar rackstar commented Sep 30, 2025

Description

#1466

migrate Cover integration tests to ethers v6

Testing

  • integration tests

Checklist

  • Performed a self-review of my own code
  • Made corresponding changes to the documentation

@rackstar rackstar self-assigned this Sep 30, 2025
Comment on lines +1 to +13
/**
* Division with ceiling rounding - equivalent to Math.ceil(a / b) for BigInt
*/
function divCeil(a, b) {
return (a + b - 1n) / b;
}

/**
* Get minimum of two BigInt values
*/
function min(a, b) {
return a < b ? a : b;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this file is deprecated in the next PR in favour of BigIntMath in lib/helpers.js (didnt noticed that file until the next PR)

@roxdanila roxdanila linked an issue Sep 30, 2025 that may be closed by this pull request
@rackstar rackstar force-pushed the test/cover-integration-ethers-v6 branch 2 times, most recently from 19bee83 to 6cf2888 Compare September 30, 2025 12:13
@shark0der shark0der force-pushed the test/cover-integration-ethers-v6 branch from 6cf2888 to 16c491f Compare October 2, 2025 13:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Convert Cover integration tests to ethers v6
1 participant