From 860f6e69f4bfd15e96c7cfea53f91ed1ac4cbb41 Mon Sep 17 00:00:00 2001 From: Liliia Sabitova <107196662+LiliaSabitova@users.noreply.github.com> Date: Fri, 18 Aug 2023 16:17:32 +0200 Subject: [PATCH] Update mock-run.ts change to console.log because it causes tests to fail --- node/mock-run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/mock-run.ts b/node/mock-run.ts index 6c0ca81ea..d21878766 100644 --- a/node/mock-run.ts +++ b/node/mock-run.ts @@ -71,7 +71,7 @@ export class TaskMockRunner { // Check if the method is a function if (typeof method !== 'function') { - console.warn(`WARNING: ${methodName} of ${newModule} is not a function. There is no option to replace getter/setter in this implementation. You can consider changing it.`); + console.log(`WARNING: ${methodName} of ${newModule} is not a function. There is no option to replace getter/setter in this implementation. You can consider changing it.`); return false; }