From f077b8830fab69c34dbcec8bc0813156d1701a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Vadal=C3=A0?= Date: Mon, 12 Feb 2024 23:34:29 +0100 Subject: [PATCH] fixes code style --- test-e2e/e2e.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-e2e/e2e.spec.js b/test-e2e/e2e.spec.js index e02eb4a..c1219a0 100644 --- a/test-e2e/e2e.spec.js +++ b/test-e2e/e2e.spec.js @@ -115,9 +115,9 @@ describe('gatt e2e', () => { }) }) - console.log({notifiedString: res.toString()}) + console.log({ notifiedString: res.toString() }) expect(res).toBeInstanceOf(Buffer) - expect(res.toString().startsWith("Notification data")).toBeTruthy() + expect(res.toString().startsWith('Notification data')).toBeTruthy() await notifiableCharacteristic.stopNotifications() })