Skip to content

Commit

Permalink
Update seekable.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dmihalcik-virtru committed Dec 12, 2024
1 parent 2c3e507 commit cc22251
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/tests/mocha/unit/seekable.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,10 @@ describe('sourceToStream', () => {
});

it('should return a ReadableStream for remote source', async () => {
const stream = await sourceToStream({ type: 'remote', location: 'http://localhost:3000/file' });
const stream = await sourceToStream({
type: 'remote',
location: 'http://localhost:3000/file',
});
expect(stream).to.be.an.instanceOf(ReadableStream);
});

Expand Down

0 comments on commit cc22251

Please sign in to comment.