mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-10 08:08:16 -05:00
**Motivation** Enable the organize import back which was disabled in #7982 to isolate the changes for import ordering **Description** - Update the organize import config - Fix all linting errors **Steps to test or reproduce** - Run all tests --------- Co-authored-by: Cayman <caymannava@gmail.com>
17 lines
591 B
TypeScript
17 lines
591 B
TypeScript
import {describe} from "vitest";
|
|
import {createChainForkConfig, defaultChainConfig} from "@lodestar/config";
|
|
import {getClient} from "../../../src/builder/client.js";
|
|
import {Endpoints} from "../../../src/builder/routes.js";
|
|
import {getRoutes} from "../../../src/builder/server/index.js";
|
|
import {runGenericServerTest} from "../../utils/genericServerTest.js";
|
|
import {testData} from "./testData.js";
|
|
|
|
describe("builder", () => {
|
|
runGenericServerTest<Endpoints>(
|
|
createChainForkConfig({...defaultChainConfig, ELECTRA_FORK_EPOCH: 0}),
|
|
getClient,
|
|
getRoutes,
|
|
testData
|
|
);
|
|
});
|