Hello :wave:. When using `DescribeSpec`, the test...
# kotest
r
Hello 👋. When using
DescribeSpec
, 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:
Copy 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):
Copy code
Describe: emitting events
  - Describe: when multiple event listeners are subscribed
    - notifies event listeners in the same order they were added
Desired test output:
Copy code
emitting events
  - when multiple event listeners are subscribed
    - notifies event listeners in the same order they were added