summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-plugins.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/mdx/test/mdx-plugins.test.js')
-rw-r--r--packages/integrations/mdx/test/mdx-plugins.test.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/mdx/test/mdx-plugins.test.js b/packages/integrations/mdx/test/mdx-plugins.test.js
index 124ec52c1..68ce1e22e 100644
--- a/packages/integrations/mdx/test/mdx-plugins.test.js
+++ b/packages/integrations/mdx/test/mdx-plugins.test.js
@@ -167,9 +167,9 @@ describe('MDX plugins', () => {
assert.equal(
selectTocLink(
document,
- '`remarkToc` plugin applied unexpectedly. Should override Markdown config.'
+ '`remarkToc` plugin applied unexpectedly. Should override Markdown config.',
),
- null
+ null,
);
});
@@ -194,13 +194,13 @@ describe('MDX plugins', () => {
assert.equal(
quote.textContent.includes('"Smartypants" is -- awesome'),
true,
- 'Does not respect `markdown.smartypants` option.'
+ 'Does not respect `markdown.smartypants` option.',
);
} else {
assert.equal(
quote.textContent.includes('“Smartypants” is — awesome'),
true,
- 'Respects `markdown.smartypants` unexpectedly.'
+ 'Respects `markdown.smartypants` unexpectedly.',
);
}
});