diff options
Diffstat (limited to '')
-rw-r--r-- | packages/integrations/mdx/test/mdx-frontmatter.js | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/integrations/mdx/test/mdx-frontmatter.js b/packages/integrations/mdx/test/mdx-frontmatter.js index 1d8ec36f6..3021f926f 100644 --- a/packages/integrations/mdx/test/mdx-frontmatter.js +++ b/packages/integrations/mdx/test/mdx-frontmatter.js @@ -29,11 +29,13 @@ describe('MDX frontmatter', () => { it('extracts frontmatter to "customFrontmatter" export when configured', async () => { const fixture = await loadFixture({ root: new URL('./fixtures/mdx-custom-frontmatter-name/', import.meta.url), - integrations: [mdx({ - frontmatterOptions: { - name: 'customFrontmatter', - }, - })], + integrations: [ + mdx({ + frontmatterOptions: { + name: 'customFrontmatter', + }, + }), + ], }); await fixture.build(); |