blob: c76c242703e637a556e3d4aa34e27110c34435a2 (
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
29
30
|
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;
});
});
});
|