31 lines
592 B
JavaScript
31 lines
592 B
JavaScript
|
import mdx from '@astrojs/mdx';
|
||
|
|
||
|
import { expect } from 'chai';
|
||
|
import { loadFixture } from '../../../astro/test/test-utils.js';
|
||
|
|
||
|
describe('MDX Infinite Loop', () => {
|
||
|
let fixture;
|
||
|
|
||
|
before(async () => {
|
||
|
fixture = await loadFixture({
|
||
|
root: new URL('./fixtures/mdx-infinite-loop/', import.meta.url),
|
||
|
integrations: [mdx()],
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('build', () => {
|
||
|
let err;
|
||
|
before(async () => {
|
||
|
try {
|
||
|
await fixture.build();
|
||
|
} catch (e) {
|
||
|
err = e;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
it('does not hang forever if an error is thrown', async () => {
|
||
|
expect(!!err).to.be.true;
|
||
|
});
|
||
|
});
|
||
|
});
|