mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
f1a52c18af
* freat: twoslash -> Astro shiki parser * test: update shiki style check * feat: always apply rehypeRaw * deps: move remark-shiki-twoslash to dev * test: add shiki-twoslash test * docs: update readme with twoslash example * chore: changeset * nit: remove "describe('disabled')"
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
import mdx from '@astrojs/mdx';
|
|
|
|
import { expect } from 'chai';
|
|
import { parseHTML } from 'linkedom';
|
|
import { loadFixture } from '../../../astro/test/test-utils.js';
|
|
import shikiTwoslash from 'remark-shiki-twoslash';
|
|
|
|
const FIXTURE_ROOT = new URL('./fixtures/mdx-syntax-hightlighting/', import.meta.url);
|
|
|
|
describe('MDX syntax highlighting', () => {
|
|
describe('shiki', () => {
|
|
it('works', async () => {
|
|
const fixture = await loadFixture({
|
|
root: FIXTURE_ROOT,
|
|
markdown: {
|
|
syntaxHighlight: 'shiki',
|
|
},
|
|
integrations: [mdx()],
|
|
});
|
|
await fixture.build();
|
|
|
|
const html = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(html);
|
|
|
|
const shikiCodeBlock = document.querySelector('pre.astro-code');
|
|
expect(shikiCodeBlock).to.not.be.null;
|
|
expect(shikiCodeBlock.getAttribute('style')).to.contain('background-color:#0d1117');
|
|
});
|
|
|
|
it('respects markdown.shikiConfig.theme', async () => {
|
|
const fixture = await loadFixture({
|
|
root: FIXTURE_ROOT,
|
|
markdown: {
|
|
syntaxHighlight: 'shiki',
|
|
shikiConfig: {
|
|
theme: 'dracula',
|
|
},
|
|
},
|
|
integrations: [mdx()],
|
|
});
|
|
await fixture.build();
|
|
|
|
const html = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(html);
|
|
|
|
const shikiCodeBlock = document.querySelector('pre.astro-code');
|
|
expect(shikiCodeBlock).to.not.be.null;
|
|
expect(shikiCodeBlock.getAttribute('style')).to.contain('background-color:#282A36');
|
|
});
|
|
});
|
|
|
|
describe('prism', () => {
|
|
it('works', async () => {
|
|
const fixture = await loadFixture({
|
|
root: FIXTURE_ROOT,
|
|
markdown: {
|
|
syntaxHighlight: 'prism',
|
|
},
|
|
integrations: [mdx()],
|
|
});
|
|
await fixture.build();
|
|
|
|
const html = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(html);
|
|
|
|
const prismCodeBlock = document.querySelector('pre.language-astro');
|
|
expect(prismCodeBlock).to.not.be.null;
|
|
});
|
|
});
|
|
|
|
it('supports custom highlighter - shiki-twoslash', async () => {
|
|
const fixture = await loadFixture({
|
|
root: FIXTURE_ROOT,
|
|
markdown: {
|
|
syntaxHighlight: false,
|
|
},
|
|
integrations: [mdx({
|
|
remarkPlugins: [shikiTwoslash.default ?? shikiTwoslash],
|
|
})],
|
|
});
|
|
await fixture.build();
|
|
|
|
const html = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(html);
|
|
|
|
const twoslashCodeBlock = document.querySelector('pre.shiki');
|
|
expect(twoslashCodeBlock).to.not.be.null;
|
|
});
|
|
});
|