0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/mdx/test/mdx-infinite-loop.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
658 B
JavaScript
Raw Normal View History

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';
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);
});
});
});