From da16d480681712280a7889ce0336a7b7b0f6a124 Mon Sep 17 00:00:00 2001 From: Ilya Goncharov Date: Tue, 10 Dec 2019 11:26:48 +0300 Subject: [PATCH] [Gradle, JS] Remove debug console --- libraries/tools/kotlin-test-js-runner/nodejs-idle.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 } };