Files
lodestar/packages/api/test/unit/builder/builder.test.ts
Nazar Hussain feed916580 chore: enable organize imports for linting (#8410)
**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>
2025-09-19 19:59:28 -04:00

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
);
});