cf2bba1e4a
* fix(astro): tag jsx vnodes with renderer so errors are properly handled * chore: fix missing package in test Co-authored-by: Nate Moore <nate@astro.build>
30 lines
592 B
JavaScript
30 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;
|
|
});
|
|
});
|
|
});
|