0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/packages/markdown/remark/test/shiki.test.js
Marco Campos 49b5145158
Feature: add support for shiki defaultColors option (#11341)
* feat: add shiki option for default color

* feat: propagate shiki option for default color to astro config

* feat: add tests for default color

* chore: add change set

* fix: add complete type to shiki default color config

* fix: remove unneeded heavy shiki theme from fixture

* fix: add literals to schema validation

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

* Update .changeset/cold-crabs-arrive.md

Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>

* feat: improve changeset

* grammar tweak

---------

Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2024-07-17 10:55:04 -04:00

104 lines
2.6 KiB
JavaScript

import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { createMarkdownProcessor, createShikiHighlighter } from '../dist/index.js';
describe('shiki syntax highlighting', () => {
it('does not add is:raw to the output', async () => {
const processor = await createMarkdownProcessor();
const { code } = await processor.render('```\ntest\n```');
assert.ok(!code.includes('is:raw'));
});
it('supports light/dark themes', async () => {
const processor = await createMarkdownProcessor({
shikiConfig: {
themes: {
light: 'github-light',
dark: 'github-dark',
},
},
});
const { code } = await processor.render('```\ntest\n```');
// light theme is there:
assert.match(code, /background-color:/);
assert.match(code, /github-light/);
// dark theme is there:
assert.match(code, /--shiki-dark-bg:/);
assert.match(code, /github-dark/);
});
it('createShikiHighlighter works', async () => {
const highlighter = await createShikiHighlighter();
const html = await highlighter.highlight('const foo = "bar";', 'js');
assert.match(html, /astro-code github-dark/);
assert.match(html, /background-color:#24292e;color:#e1e4e8;/);
});
it('diff +/- text has user-select: none', async () => {
const highlighter = await createShikiHighlighter();
const html = await highlighter.highlight(
`\
- const foo = "bar";
+ const foo = "world";`,
'diff'
);
assert.match(html, /user-select: none/);
assert.match(html, />-<\/span>/);
assert.match(html, />+<\/span>/);
});
it('renders attributes', async () => {
const highlighter = await createShikiHighlighter();
const html = await highlighter.highlight(`foo`, 'js', {
attributes: { 'data-foo': 'bar', autofocus: true },
});
assert.match(html, /data-foo="bar"/);
assert.match(html, /autofocus(?!=)/);
});
it('supports transformers that reads meta', async () => {
const highlighter = await createShikiHighlighter({
transformers: [
{
pre(node) {
const meta = this.options.meta?.__raw;
if (meta) {
node.properties['data-test'] = meta;
}
},
},
],
});
const html = await highlighter.highlight(`foo`, 'js', {
meta: '{1,3-4}',
});
assert.match(html, /data-test="\{1,3-4\}"/);
});
it('supports the defaultColor setting', async () => {
const processor = await createMarkdownProcessor({
shikiConfig: {
themes: {
light: 'github-light',
dark: 'github-dark',
},
defaultColor: false,
},
});
const { code } = await processor.render('```\ntest\n```');
// Doesn't have `color` or `background-color` properties.
assert.doesNotMatch(code, /color:/);
});
});