Skip to content

Commit

Permalink
fix(deployment): fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 committed Nov 21, 2024
1 parent 20873fa commit ef8d9d3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@ 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, blockRepository);
service = new BlockHttpService(blockHttpService);
});

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

0 comments on commit ef8d9d3

Please sign in to comment.