summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-frontmatter.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--packages/integrations/mdx/test/mdx-frontmatter.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/integrations/mdx/test/mdx-frontmatter.js b/packages/integrations/mdx/test/mdx-frontmatter.js
new file mode 100644
index 000000000..1d8ec36f6
--- /dev/null
+++ b/packages/integrations/mdx/test/mdx-frontmatter.js
@@ -0,0 +1,43 @@
+import mdx from '@astrojs/mdx';
+
+import { expect } from 'chai';
+import { loadFixture } from '../../../astro/test/test-utils.js';
+
+const FIXTURE_ROOT = new URL('./fixtures/mdx-frontmatter/', import.meta.url);
+
+describe('MDX frontmatter', () => {
+ it('builds when "frontmatter.property" is in JSX expression', async () => {
+ const fixture = await loadFixture({
+ root: FIXTURE_ROOT,
+ integrations: [mdx()],
+ });
+ await fixture.build();
+ expect(true).to.equal(true);
+ });
+
+ it('extracts frontmatter to "frontmatter" export', async () => {
+ const fixture = await loadFixture({
+ root: FIXTURE_ROOT,
+ integrations: [mdx()],
+ });
+ await fixture.build();
+
+ const { titles } = JSON.parse(await fixture.readFile('/glob.json'));
+ expect(titles).to.include('Using YAML 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',
+ },
+ })],
+ });
+ await fixture.build();
+
+ const { titles } = JSON.parse(await fixture.readFile('/glob.json'));
+ expect(titles).to.include('Using YAML frontmatter');
+ });
+});