Files
kotlin-fork/libraries/tools/kotlin-test-js-runner/nodejs-idle.ts
T
2019-12-10 11:26:48 +03:00

14 lines
375 B
TypeScript
Executable File

import {KotlinTestRunner} from "./src/KotlinTestRunner";
const kotlin_test = require('kotlin-test');
const nothingTest: KotlinTestRunner = {
suite(name: string, isIgnored: boolean, fn: () => void): void {
// do nothing
},
test(name: string, isIgnored: boolean, fn: () => void): void {
// do nothing
}
};
kotlin_test.setAdapter(nothingTest);