Skip to content

Commit

Permalink
update list of providers
Browse files Browse the repository at this point in the history
  • Loading branch information
cfaur09 committed Aug 9, 2024
1 parent 89ac88d commit 4040411
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/unit/services/tokens.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { TransferService } from "src/endpoints/transfers/transfer.service";
import { MexPairService } from "src/endpoints/mex/mex.pair.service";
import * as fs from 'fs';
import * as path from 'path';
import { ApiService } from "@multiversx/sdk-nestjs-http";

describe('Token Service', () => {
let tokenService: TokenService;
Expand Down Expand Up @@ -131,6 +132,12 @@ describe('Token Service', () => {
getAllMexPairs: jest.fn(),
},
},
{
provide: ApiService,
useValue: {
get: jest.fn(),
},
},
],
}).compile();

Expand Down

0 comments on commit 4040411

Please sign in to comment.