From cc222513a7e24bd45a997a5c89ee94c4de85a6ae Mon Sep 17 00:00:00 2001 From: David Mihalcik Date: Thu, 12 Dec 2024 13:38:05 -0500 Subject: [PATCH] Update seekable.spec.ts --- lib/tests/mocha/unit/seekable.spec.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); });