diff options
author | 2022-08-12 22:19:32 +0000 | |
---|---|---|
committer | 2022-08-12 22:19:32 +0000 | |
commit | 695e9b34daa505499af77b461750afeadfa7a0d1 (patch) | |
tree | e2eac69e57f143960a37f4d1df381aeb0c6f1754 | |
parent | f7afdb889fe4e97177958c8ec92f80c5f6e5cb51 (diff) | |
download | astro-695e9b34daa505499af77b461750afeadfa7a0d1.tar.gz astro-695e9b34daa505499af77b461750afeadfa7a0d1.tar.zst astro-695e9b34daa505499af77b461750afeadfa7a0d1.zip |
[ci] format
-rw-r--r-- | packages/integrations/mdx/test/mdx-frontmatter.test.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/integrations/mdx/test/mdx-frontmatter.test.js b/packages/integrations/mdx/test/mdx-frontmatter.test.js index 9f0e9d8e6..039a12ddc 100644 --- a/packages/integrations/mdx/test/mdx-frontmatter.test.js +++ b/packages/integrations/mdx/test/mdx-frontmatter.test.js @@ -64,7 +64,10 @@ describe('MDX frontmatter', () => { const frontmatterFile = document.querySelector('[data-frontmatter-file]')?.textContent; const frontmatterUrl = document.querySelector('[data-frontmatter-url]')?.textContent; - expect(frontmatterFile?.endsWith('with-headings.mdx')).to.equal(true, '"file" prop does not end with correct path or is undefined'); + expect(frontmatterFile?.endsWith('with-headings.mdx')).to.equal( + true, + '"file" prop does not end with correct path or is undefined' + ); expect(frontmatterUrl).to.equal('/with-headings'); }); }); |