diff --git a/libraries/tools/kotlin-test-js-runner/nodejs-idle.ts b/libraries/tools/kotlin-test-js-runner/nodejs-idle.ts index 5d4a45fbe62..59828e1909f 100755 --- a/libraries/tools/kotlin-test-js-runner/nodejs-idle.ts +++ b/libraries/tools/kotlin-test-js-runner/nodejs-idle.ts @@ -4,11 +4,10 @@ const kotlin_test = require('kotlin-test'); const nothingTest: KotlinTestRunner = { suite(name: string, isIgnored: boolean, fn: () => void): void { - console.error("suite", name) + // do nothing }, test(name: string, isIgnored: boolean, fn: () => void): void { - console.error("test", name) - + // do nothing } };