angular/adev/shared-docs/pipeline/guides/testing/docs-video/docs-video.spec.mts
Joey Perrott 84b66f3b04 build: migrate adev shared-docs package to use ts_project (#61217)
Migrate the build rules for shared docs to use ts_project

PR Close #61217
2025-05-09 16:32:06 +00:00

36 lines
1.2 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-video/docs-video.md'),
{encoding: 'utf-8'},
);
markdownDocument = JSDOM.fragment(await parseMarkdown(markdownContent, {}));
});
it('should create an iframe in a container', () => {
const videoContainerEl = markdownDocument.querySelector('.docs-video-container')!;
const iframeEl = videoContainerEl.children[0];
expect(videoContainerEl.children.length).toBe(1);
expect(iframeEl.nodeName).toBe('IFRAME');
expect(iframeEl.getAttribute('src')).toBeTruthy();
expect(iframeEl.classList.contains('docs-video')).toBeTrue();
expect(iframeEl.getAttribute('title')).toBeTruthy();
});
});