Skip to content

Commit

Permalink
test(messageRenderer): remove blockquote rendering test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
olafsulich committed Jan 2, 2025
1 parent 9eb9ab5 commit 66e9f31
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/script/util/messageRenderer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,11 +552,6 @@ describe('Ignored Markdown syntax', () => {
expect(renderMessage('no h2\n---')).toBe('no h2<br>---');
});

it('does not render blockquotes', () => {
expect(renderMessage('>no blockquote')).toBe('&gt;no blockquote');
expect(renderMessage('> no blockquote')).toBe('&gt; no blockquote');
});

it('does not render tables', () => {
const input = 'First Header | Second Header\n------------ | -------------\nCell 1 | Cell 2';
const expected = 'First Header | Second Header<br>------------ | -------------<br>Cell 1 | Cell 2';
Expand Down

0 comments on commit 66e9f31

Please sign in to comment.