We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
As you record interactions between the client and the server, notes can be added to the markdown:
new MarkdownRecorder() .noteForNextInteraction("Some title", "Paul was here\nAnd he suggests you ignore this note");
That itself is Markdown, so can contain suitable formatting codes.
And if you wanted a code block that won't be processed as Markdown, then that is possible too:
new MarkdownRecorder() .codeNoteForNextInteraction("Note", "foo.bar(true); // activates something important in our tests");