Skip to content

Commit abda191

Browse files
committed
test: ignore revertWithInvalidErrorMessage due to EDR bug
We want to re-enable this test once the error message has been updated.
1 parent f7196cd commit abda191

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/hardhat-ignition-core/test-integrations/test-execution-result-fixtures.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,11 @@ describe("execution-result-fixture tests", function () {
9898
for (const contractName of contractNames) {
9999
const artifact = staticCallResultFixturesArtifacts[contractName];
100100

101-
for (const abiItem of artifact.abi) {
101+
for (const abiItem of artifact.abi.filter(
102+
// TODO: bring this test back once EDR has updated the invalid
103+
// error message error message - I said what I said
104+
(abi) => abi.name !== "revertWithInvalidErrorMessage"
105+
)) {
102106
if (abiItem.type !== "function") {
103107
continue;
104108
}

0 commit comments

Comments
 (0)