diff --git a/lib/tests/mocha/unit/seekable.spec.ts b/lib/tests/mocha/unit/seekable.spec.ts index 786a0e5a..a8831592 100644 --- a/lib/tests/mocha/unit/seekable.spec.ts +++ b/lib/tests/mocha/unit/seekable.spec.ts @@ -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); });