astro/packages/markdown/remark/test/plugins.test.js

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

31 lines
753 B
JavaScript
Raw Permalink Normal View History

import { createMarkdownProcessor } from '../dist/index.js';
import chai from 'chai';
import { fileURLToPath } from 'node:url';
describe('plugins', () => {
// https://github.com/withastro/astro/issues/3264
it('should be able to get file path when passing fileURL', async () => {
let context;
const processor = await createMarkdownProcessor({
remarkPlugins: [
function () {
const transformer = (tree, file) => {
context = file;
};
return transformer;
2022-05-24 22:03:29 +00:00
},
],
});
await processor.render(`test`, {
fileURL: new URL('virtual.md', import.meta.url),
});
chai.expect(typeof context).to.equal('object');
chai.expect(context.path).to.equal(fileURLToPath(new URL('virtual.md', import.meta.url)));
});
2022-05-24 22:03:29 +00:00
});