Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dragnoir committed May 29, 2024
1 parent c31a20e commit 32e14db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/ExpensiMark-Markdown-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ test('double quotes in same line', () => {
expect(parser.htmlToMarkdown(testString)).toBe(resultString);
});

test('tripple quotes in same line', () => {
test('triple quotes in same line', () => {
const testString = '<blockquote><blockquote><blockquote>line 1</blockquote></blockquote></blockquote>';
const resultString = '>>> line 1';
expect(parser.htmlToMarkdown(testString)).toBe(resultString);
Expand Down

0 comments on commit 32e14db

Please sign in to comment.