| 123456789101112131415161718192021222324 |
- import { describe, expect, test } from 'bun:test';
- import { extractHeadingsFromMarkdown, joinRenderedContent } from './utils';
- describe('smartfetch/utils', () => {
- test('extracts cleaned headings from markdown', () => {
- const headings = extractHeadingsFromMarkdown(
- ['# Intro', '## Details ###', '### C#', 'plain text'].join('\n'),
- );
- expect(headings).toEqual(['Intro', 'Details', 'C#']);
- });
- test('injects metadata comments after an XML declaration in html output', () => {
- const result = joinRenderedContent(
- '---\nsource: "smartfetch"\n---\n\n',
- '<?xml version="1.0"?><root>ok</root>',
- 'html',
- );
- expect(result).toStartWith('<?xml version="1.0"?>');
- expect(result).toContain('<!--\n---\nsource: "smartfetch"\n---\n-->');
- expect(result).toContain('<root>ok</root>');
- });
- });
|