Skip to content

Commit 76eb2e7

Browse files
committed
test(integration): implement registration and allocation invariants
* chore: fix forge nightly release breaking two tests * test: fix outdated alm tests
1 parent bd2453c commit 76eb2e7

24 files changed

+2493
-493
lines changed

foundry.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ remappings = [
1515
"forge-std/=lib/forge-std/src/"
1616
]
1717
sparse_mode = true
18+
internal_expect_revert = true
1819

1920
# A list of ignored solc error codes
2021

script/utils/ExistingDeploymentParser.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ contract ExistingDeploymentParser is Script, Logger {
185185
/// @notice use for parsing already deployed EigenLayer contracts
186186
function _parseDeployedContracts(
187187
string memory existingDeploymentInfoPath
188-
) internal virtual {
188+
) internal noTracing virtual {
189189
// read and log the chainID
190190
uint256 currentChainId = block.chainid;
191191
console.log("You are parsing on ChainID", currentChainId);
@@ -663,7 +663,7 @@ contract ExistingDeploymentParser is Script, Logger {
663663
/// @notice used for parsing parameters used in the integration test upgrade
664664
function _parseParamsForIntegrationUpgrade(
665665
string memory initialDeploymentParamsPath
666-
) internal virtual {
666+
) internal noTracing virtual {
667667
// read and log the chainID
668668
uint256 currentChainId = block.chainid;
669669
console.log("You are parsing on ChainID", currentChainId);

0 commit comments

Comments
 (0)