Skip to content

Commit

Permalink
test(upload): fix argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY committed Oct 28, 2024
1 parent 3468b88 commit b0b195e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('UploadComponent', () => {
component.onFileUpload();

expect(spy).toHaveBeenCalled();
const arg = spy.calls.first().args[0];
const arg = spy.calls.first().args[0] as any;
expect(arg instanceof SetVideo).toBeTrue();
expect(arg.src).toContain('blob:http');
});
Expand Down
Binary file modified src/assets/promotional/about/github-hero.webp
Binary file not shown.

0 comments on commit b0b195e

Please sign in to comment.