14 lines
375 B
TypeScript
Executable File
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); |