From 63da1126a7a7eebd49f6e1ad3c2efc9078823881 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Mon, 4 Aug 2025 23:16:01 -0400 Subject: [PATCH] Added minor comment --- test/test-utils/text-interceptor.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test-utils/text-interceptor.ts b/test/test-utils/text-interceptor.ts index 40f82e41045..dfbaf2ff11c 100644 --- a/test/test-utils/text-interceptor.ts +++ b/test/test-utils/text-interceptor.ts @@ -20,6 +20,7 @@ export class TextInterceptor { } showText(text: string): void { + // NB: We do not format the raw _logs_ themselves as tests will be actively checking it. console.log(this.formatText(text)); this.logs.push(text); }