blob: ed98d5c6d9e283e076e7ee928bba74c708737cbf (
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
31
|
import mdx from '@astrojs/mdx';
import * as assert from 'node:assert/strict';
import { before, describe, it } from 'node:test';
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 () => {
assert.equal(!!err, true);
});
});
});
|