Skip to content

Commit

Permalink
type and lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed May 11, 2024
1 parent 0de4d17 commit d548a27
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
30 changes: 15 additions & 15 deletions packages/beacon-node/test/sim/electra-interop.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,21 +234,21 @@ describe("executionEngine / ExecutionEngineHttp", function () {
});

// TODO: get this post merge run working
// it("Post-merge, run for a few blocks", async function () {
// console.log("\n\nPost-merge, run for a few blocks\n\n");
// const {elClient, tearDownCallBack} = await runEL(
// {...elSetupConfig, mode: ELStartMode.PostMerge, genesisTemplate: "electra.tmpl"},
// {...elRunOptions, ttd: BigInt(0)},
// controller.signal
// );
// afterEachCallbacks.push(() => tearDownCallBack());

// await runNodeWithEL({
// elClient,
// electraEpoch: 0,
// testName: "post-merge",
// });
// });
it.skip("Post-merge, run for a few blocks", async function () {
console.log("\n\nPost-merge, run for a few blocks\n\n");
const {elClient, tearDownCallBack} = await runEL(
{...elSetupConfig, mode: ELStartMode.PostMerge, genesisTemplate: "electra.tmpl"},
{...elRunOptions, ttd: BigInt(0)},
controller.signal
);
afterEachCallbacks.push(() => tearDownCallBack());

await runNodeWithEL({
elClient,
electraEpoch: 0,
testName: "post-merge",
});
});

/**
* Want to test two things:
Expand Down
5 changes: 3 additions & 2 deletions packages/types/src/electra/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from "./types.js";
export * as ts from "./types.js";
export * as ssz from "./sszTypes.js";
import * as ts from "./types.js";
import * as ssz from "./sszTypes.js";
export {ts, ssz};

0 comments on commit d548a27

Please sign in to comment.