From 8b26362e4a072fb2cc4f7eeac67bffee00c0f819 Mon Sep 17 00:00:00 2001 From: dmihalcik-virtru Date: Thu, 12 Dec 2024 18:24:10 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20=F0=9F=8E=A8=20Autoformat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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); });