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); }