Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Jan 9, 2025
1 parent 8319906 commit f702c91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/fuels/src/cli/commands/dev/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('dev', () => {

const withConfigErrorHandler = vi
.spyOn(withConfigMod, 'withConfigErrorHandler')
.mockReturnValue(Promise.resolve());
.mockReturnValue(undefined as never);

const loadConfig = vi
.spyOn(loadConfigMod, 'loadConfig')
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels/src/cli/commands/node/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('node', () => {

const withConfigErrorHandler = vi
.spyOn(withConfigMod, 'withConfigErrorHandler')
.mockReturnValue(Promise.resolve());
.mockReturnValue(undefined as never);

const loadConfig = vi
.spyOn(loadConfigMod, 'loadConfig')
Expand Down

0 comments on commit f702c91

Please sign in to comment.