Skip to content

Commit

Permalink
fix(deployment): test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 committed Nov 21, 2024
1 parent 953cf95 commit bbedcef
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ import "@test/mocks/logger-service.mock";
import { BlockHttpService as BlockHttpServiceCommon } from "@akashnetwork/http-sdk";
import { faker } from "@faker-js/faker";

import { BlockRepository } from "@src/chain/repositories/block.repository";
import { BlockHttpService } from "./block-http.service";

describe(BlockHttpService.name, () => {
let service: BlockHttpService;
let blockHttpService: BlockHttpServiceCommon;
let blockRepository: BlockRepository;

beforeEach(() => {
blockHttpService = new BlockHttpServiceCommon();
service = new BlockHttpService(blockHttpService);
service = new BlockHttpService(blockHttpService, blockRepository);
});

it("should get current height", async () => {
Expand Down

0 comments on commit bbedcef

Please sign in to comment.