2022-09-30 17:13:44 -05:00
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
import * as assert from 'node:assert/strict';
|
|
|
|
import { before, describe, it } from 'node:test';
|
2022-09-30 17:13:44 -05:00
|
|
|
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 () => {
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(!!err, true);
|
2022-09-30 17:13:44 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|