czyzby
02/15/2018, 11:29 AMmocha --delay. As Al Scott pointed out, I should have used Mocha async tests from the beginning. I solved it by creating external definitions for `describe`/`it` from Mocha.
val MyTest = describe("io.my.package") {
describe("MyTest") {
it("should check interval") { done ->
window.setInterval({
assertEquals(1, 1)
done()
}, 100)
}
}
}