From f936abe5c0ab1e4dcd57964a3b182a7928e9e614 Mon Sep 17 00:00:00 2001 From: Aaron Boodman Date: Thu, 27 Jan 2022 19:15:34 -1000 Subject: [PATCH] Fix compile error --- test/util/test-utils.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/util/test-utils.ts b/test/util/test-utils.ts index 9257bc9..6a3c274 100644 --- a/test/util/test-utils.ts +++ b/test/util/test-utils.ts @@ -44,6 +44,8 @@ export function clientMutation( } export class Mocket implements Socket { + // eslint-disable-next-line @typescript-eslint/no-empty-function + accept(): void {} log: string[][] = []; send(data: string): void { this.log.push(["send", data]);