Skip to content

Commit a5381cd

Browse files
wadealexcypatil12
authored andcommitted
test(integration): implement registration and allocation invariants (#1042)
* chore: fix forge nightly release breaking two tests * test: fix outdated alm tests
1 parent 1b97e8d commit a5381cd

24 files changed

+2493
-493
lines changed

foundry.toml

Lines changed: 1 addition & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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)