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); }); }); }); '>ci-check Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/pool (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-01-20Update CHANGELOG.mdGravatar Tyler Holmes 1-0/+4
2022-01-17differentiate full vs CAS polyfillGravatar Tyler Holmes 5-22/+27
2022-01-17changelogGravatar Tyler Holmes 1-0/+4
2022-01-17have docs.rs document the optional featuresGravatar Tyler Holmes 1-0/+3
2022-01-17fix documentationGravatar Tyler Holmes 2-6/+12
2022-01-17add riscv cas atomic support and cleanup the #cfg's for itGravatar Tyler Holmes 5-13/+40
2022-01-16assume native compilation if target_os is not "none" to allow non-x86 hosts t...Gravatar Tyler Holmes 1-1/+1
2022-01-15Changelog.Gravatar Finn Bear 1-0/+4
2022-01-15Cleanup tests.Gravatar Finn Bear 1-12/+5
2022-01-15Fix termination behavior and add comprehensive test cases.Gravatar Finn Bear 1-23/+60
2022-01-15Fix panic if buffer was empty.Gravatar Finn Bear 2-15/+28