From 7f3596845c4c14a801aeb6557bab6a01a56918e7 Mon Sep 17 00:00:00 2001 From: Valere Date: Tue, 25 Nov 2025 11:40:38 +0100 Subject: [PATCH] fix formatting --- src/UrlParams.test.ts | 15 ++++++++------- .../remoteMembers/ECConnectionFactory.test.ts | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/UrlParams.test.ts b/src/UrlParams.test.ts index cd195f54..faba394f 100644 --- a/src/UrlParams.test.ts +++ b/src/UrlParams.test.ts @@ -339,19 +339,20 @@ describe("UrlParams", () => { }); it("is parsed", () => { - expect(computeUrlParams("?intent=start_call&noiseSuppression=true").noiseSuppression).toBe( - true, - ); - expect(computeUrlParams("?intent=start_call&noiseSuppression&bar=foo").noiseSuppression).toBe( - true, - ); + expect( + computeUrlParams("?intent=start_call&noiseSuppression=true") + .noiseSuppression, + ).toBe(true); + expect( + computeUrlParams("?intent=start_call&noiseSuppression&bar=foo") + .noiseSuppression, + ).toBe(true); expect(computeUrlParams("?noiseSuppression=false").noiseSuppression).toBe( false, ); }); }); - describe("echoCancellation", () => { it("defaults to true", () => { expect(computeUrlParams().echoCancellation).toBe(true); diff --git a/src/state/CallViewModel/remoteMembers/ECConnectionFactory.test.ts b/src/state/CallViewModel/remoteMembers/ECConnectionFactory.test.ts index cbf334be..78e23057 100644 --- a/src/state/CallViewModel/remoteMembers/ECConnectionFactory.test.ts +++ b/src/state/CallViewModel/remoteMembers/ECConnectionFactory.test.ts @@ -102,7 +102,7 @@ describe("ECConnectionFactory - ControlledAudioDevice", () => { available$: constant(new Map()), selected$: constant({ id: "DEV00", virtualEarpiece: false }), select: () => {}, - } + }, }), new BehaviorSubject({ supported: true,