mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
import {parseMarkdown} from '../../../guides/parse.mjs';
|
|
import {runfiles} from '@bazel/runfiles';
|
|
import {readFile} from 'fs/promises';
|
|
import {JSDOM} from 'jsdom';
|
|
|
|
describe('markdown to html', () => {
|
|
let markdownDocument: DocumentFragment;
|
|
|
|
beforeAll(async () => {
|
|
const markdownContent = await readFile(
|
|
runfiles.resolvePackageRelative('docs-pill/docs-pill.md'),
|
|
{encoding: 'utf-8'},
|
|
);
|
|
markdownDocument = JSDOM.fragment(await parseMarkdown(markdownContent, {}));
|
|
});
|
|
|
|
it('should render links to anchors on the same page', () => {
|
|
const samePageEl = markdownDocument.querySelectorAll('a.docs-pill')[0];
|
|
expect(samePageEl.textContent?.trim()).toBe('Same Page');
|
|
});
|
|
|
|
it('should render external links with _blank target and iconography', () => {
|
|
const samePageEl = markdownDocument.querySelectorAll('a.docs-pill')[1];
|
|
expect(samePageEl.getAttribute('target')).toBe('_blank');
|
|
expect(samePageEl.textContent?.trim()).toContain('External Page');
|
|
expect(samePageEl.querySelector('docs-icon')?.textContent).toBe('open_in_new');
|
|
});
|
|
|
|
it('should render internal links that are relative paths', () => {
|
|
const samePageEl = markdownDocument.querySelectorAll('a.docs-pill')[2];
|
|
expect(samePageEl.textContent?.trim()).toBe('Another Page');
|
|
});
|
|
});
|