aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-frontmatter.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/mdx/test/mdx-frontmatter.test.js')
-rw-r--r--packages/integrations/mdx/test/mdx-frontmatter.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/mdx/test/mdx-frontmatter.test.js b/packages/integrations/mdx/test/mdx-frontmatter.test.js
index 3fcbf28e8..df36a2439 100644
--- a/packages/integrations/mdx/test/mdx-frontmatter.test.js
+++ b/packages/integrations/mdx/test/mdx-frontmatter.test.js
@@ -50,7 +50,7 @@ describe('MDX frontmatter', () => {
const { document } = parseHTML(html);
const headingSlugs = [...document.querySelectorAll('[data-headings] > li')].map(
- (el) => el.textContent
+ (el) => el.textContent,
);
assert.equal(headingSlugs.length > 0, true);
@@ -70,7 +70,7 @@ describe('MDX frontmatter', () => {
assert.equal(
frontmatterFile?.endsWith('with-headings.mdx'),
true,
- '"file" prop does not end with correct path or is undefined'
+ '"file" prop does not end with correct path or is undefined',
);
assert.equal(frontmatterUrl, '/with-headings');
assert.equal(file, frontmatterFile);