Skip to content

Commit

Permalink
Fix few types
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Oct 14, 2024
1 parent dff8184 commit 2309803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const epochProcessing =
expectEqualBeaconState(fork, expected, actual);
},
// Do not manually skip tests here, do it in packages/beacon-node/test/spec/presets/index.test.ts
shouldSkip: (_testcase, name, _index) => skipTestNames?.some((skipTestName) => name.includes(skipTestName)),
shouldSkip: (_testcase, name, _index) => skipTestNames?.some((skipTestName) => name.includes(skipTestName)) ?? false,
},
};
};
Expand Down
2 changes: 1 addition & 1 deletion packages/beacon-node/test/spec/presets/transition.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const transition =
expectEqualBeaconState(forkNext, expected, actual);
},
// Do not manually skip tests here, do it in packages/beacon-node/test/spec/presets/index.test.ts
shouldSkip: (_testcase, name, _index) => skipTestNames?.some((skipTestName) => name.includes(skipTestName)),
shouldSkip: (_testcase, name, _index) => skipTestNames?.some((skipTestName) => name.includes(skipTestName)) ?? false,
},
};
};
Expand Down

0 comments on commit 2309803

Please sign in to comment.