Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanc1 committed Mar 26, 2024
1 parent 48b1b65 commit 92bae38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/markdown-it-myst/tests/directives.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ describe('parses directives', () => {
['before', 'Paragraph\n```{math}\nAx=b\n```'],
['after', 'Paragraph\n\n```{math}\nAx=b\n```\nAfter paragraph'],
['after', '```{math}\nAx=b\n```\nAfter paragraph'],
])('directives have tightness information %s', (tight, src) => {
])('directives have tightness information: "%s"', (tight, src) => {
const mdit = MarkdownIt().use(plugin);
const tokens = mdit.parse(src, {});
const open = tokens.find((t) => t.type === 'parsed_directive_open');
Expand Down

0 comments on commit 92bae38

Please sign in to comment.