blob: 76d6709f0257bb621e3374c65ec0e0e490bb33fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import mdx from '@astrojs/mdx';
import { expect } from 'chai';
import { loadFixture } from '../../../astro/test/test-utils.js';
describe('MDX url export', () => {
let fixture;
before(async () => {
fixture = await loadFixture({
root: new URL('./fixtures/mdx-url-export/', import.meta.url),
integrations: [mdx()],
});
await fixture.build();
});
it('generates correct urls in glob result', async () => {
const { urls } = JSON.parse(await fixture.readFile('/pages.json'));
expect(urls).to.include('/test-1');
expect(urls).to.include('/test-2');
});
it('respects "export url" overrides in glob result', async () => {
const { urls } = JSON.parse(await fixture.readFile('/pages.json'));
expect(urls).to.include('/AH!');
});
});
|