[Gradle, JS] Remove debug console

This commit is contained in:
Ilya Goncharov
2019-12-10 11:26:48 +03:00
parent 096a6c9551
commit da16d48068
@@ -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
}
};