reevn
06/04/2020, 11:56 AMDescribeSpec
, the test output when running tests adds the prefix Describe:
and It:
before any nesting/test name. Is there any way to disable this?
Test code:
describe("emitting events") {
describe("when multiple event listeners are subscribed")
it("notifies event listeners in the same order they were added")
}
Current test output in the console (and the Kotest plugin):
Describe: emitting events
- Describe: when multiple event listeners are subscribed
- notifies event listeners in the same order they were added
Desired test output:
emitting events
- when multiple event listeners are subscribed
- notifies event listeners in the same order they were added