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-math.test.js
Emanuele Stoppa 062623438b
chore: use biome to sort imports - only test files (#10180)
* chore: use biome to sort imports

* do the sorting

* Update package.json

Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>

---------

Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
2024-02-21 14:08:19 +00:00

73 lines
2 KiB
JavaScript

import * as assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import mdx from '@astrojs/mdx';
import { parseHTML } from 'linkedom';
import rehypeMathjaxSvg from 'rehype-mathjax';
import rehypeMathjaxChtml from 'rehype-mathjax/chtml';
import remarkMath from 'remark-math';
import { loadFixture } from '../../../astro/test/test-utils.js';
const FIXTURE_ROOT = new URL('./fixtures/mdx-math/', import.meta.url);
describe('MDX math', () => {
describe('mathjax', () => {
it('works with svg', async () => {
const fixture = await loadFixture({
root: FIXTURE_ROOT,
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeMathjaxSvg],
},
integrations: [mdx()],
});
await fixture.build();
const html = await fixture.readFile('/mathjax/index.html');
const { document } = parseHTML(html);
const mjxContainer = document.querySelector('mjx-container[jax="SVG"]');
assert.notEqual(mjxContainer, null);
const mjxStyle = document.querySelector('style').innerHTML;
assert.equal(
mjxStyle.includes('mjx-container[jax="SVG"]'),
true,
'style should not be html-escaped'
);
});
it('works with chtml', async () => {
const fixture = await loadFixture({
root: FIXTURE_ROOT,
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [
[
rehypeMathjaxChtml,
{
chtml: {
fontURL: 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/output/chtml/fonts/woff-v2',
},
},
],
],
},
integrations: [mdx()],
});
await fixture.build();
const html = await fixture.readFile('/mathjax/index.html');
const { document } = parseHTML(html);
const mjxContainer = document.querySelector('mjx-container[jax="CHTML"]');
assert.notEqual(mjxContainer, null);
const mjxStyle = document.querySelector('style').innerHTML;
assert.equal(
mjxStyle.includes('mjx-container[jax="CHTML"]'),
true,
'style should not be html-escaped'
);
});
});
});