Skip to content

Commit

Permalink
test(cli): prefix dot to mocked getSupportedMediaTypes()
Browse files Browse the repository at this point in the history
  • Loading branch information
eligao committed Dec 30, 2024
1 parent 2b99f88 commit 3e74c98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/commands/asset.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ describe('startWatch', () => {
],
});
vi.mocked(getSupportedMediaTypes).mockResolvedValue({
image: ['jpg'],
sidecar: ['xmp'],
video: ['mp4'],
image: ['.jpg'],
sidecar: ['.xmp'],
video: ['.mp4'],
});
try {
await startWatch([testFolder], { concurrency: 1 }, { batchSize: 1, debounceTimeMs: 10 });
Expand Down

0 comments on commit 3e74c98

Please sign in to comment.