Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Oct 14, 2024
1 parent d67458d commit 7cfc88e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ 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)) ?? false,
shouldSkip: (_testcase, name, _index) =>
skipTestNames?.some((skipTestName) => name.includes(skipTestName)) ?? false,
},
};
};
Expand Down
3 changes: 2 additions & 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,8 @@ 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)) ?? false,
shouldSkip: (_testcase, name, _index) =>
skipTestNames?.some((skipTestName) => name.includes(skipTestName)) ?? false,
},
};
};
Expand Down

0 comments on commit 7cfc88e

Please sign in to comment.