1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

added unit test for checkbox markdown syntax

This commit is contained in:
Yu-Hung Ou
2018-03-14 21:47:07 +11:00
parent b5cb209f14
commit f72b4f0249
4 changed files with 23 additions and 2 deletions

View File

@@ -20,3 +20,8 @@ test('Markdown.render() should renders KaTeX correctly', t => {
const rendered = md.render(markdownFixtures.katex)
t.snapshot(rendered)
})
test('Markdown.render() should renders checkboxes', t => {
const rendered = md.render(markdownFixtures.checkboxes)
t.snapshot(rendered)
})