Skip to content

Commit 860f6e6

Browse files
Update mock-run.ts
change to console.log because it causes tests to fail
1 parent 7ef3637 commit 860f6e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: node/mock-run.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class TaskMockRunner {
7171

7272
// Check if the method is a function
7373
if (typeof method !== 'function') {
74-
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.`);
74+
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.`);
7575
return false;
7676
}
7777

0 commit comments

Comments
 (0)