1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-14 10:16:26 +00:00

add test for PlantUml Ditaa

This commit is contained in:
MSSandroid
2019-09-19 13:17:16 +02:00
committed by Junyoung Choi
parent 0003de8f08
commit 6b1c595f87
4 changed files with 27 additions and 0 deletions

View File

@@ -93,3 +93,8 @@ test('Markdown.render() should render PlantUML Umls correctly', t => {
const rendered = md.render(markdownFixtures.plantUmlUml)
t.snapshot(rendered)
})
test('Markdown.render() should render PlantUML Ditaa correctly', t => {
const rendered = md.render(markdownFixtures.plantUmlDitaa)
t.snapshot(rendered)
})