robstoll
07/23/2019, 12:20 PMsuite('ch.tutteli.atrium.core.polyfills', false, function () {
suite('AtriumPropertyTest', false, function () {
test('get_undefined_returnsNull', false, function () {
return (new AtriumPropertyTest()).get_undefined_returnsNull();
});
})
suite comes from kotlin_test.kotlin.test.suite and delegates to mocha, jasmine and the like
which means, you could call suite as well and if you are lucky it runs out of the box (with the necessary setup for com.moowork.gradle:gradle-node-plugin + mocha for instance -- see https://github.com/robstoll/atrium/tree/master/misc/examples/js/mocha)