Skip to content

Commit

Permalink
feat(api): #3121 scdl integration script
Browse files Browse the repository at this point in the history
- corrected type error
  • Loading branch information
461OceanBd committed Jan 16, 2025
1 parent 9d9d1a1 commit 18996b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe("scdl-data-integration.node", () => {
});

beforeEach(() => {
jest.spyOn(process, "exit").mockImplementation((() => {}) as (code?: number) => never);
jest.spyOn(process, "exit").mockImplementation((() => {}) as (code?: any) => never);
addProducerMock = jest.spyOn(ScdlCli.prototype, "addProducer").mockResolvedValue();
parseMock = jest.spyOn(ScdlCli.prototype, "parse").mockResolvedValue();
parseXlsMock = jest.spyOn(ScdlCli.prototype, "parseXls").mockResolvedValue();
Expand Down

0 comments on commit 18996b5

Please sign in to comment.