angular/adev/shared-docs/pipeline/guides/testing/table/table.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

35 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 {readFile} from 'fs/promises';
import {parseMarkdown} from '../../../guides/parse.mjs';
import {runfiles} from '@bazel/runfiles';
describe('markdown to html', () => {
let parsedMarkdown: string;
beforeAll(async () => {
const markdownContent = await readFile(runfiles.resolvePackageRelative('table/table.md'), {
encoding: 'utf-8',
});
parsedMarkdown = await parseMarkdown(markdownContent, {});
});
it('should wrap the table in custom div', () => {
expect(parsedMarkdown).toContain('<div class="docs-table docs-scroll-track-transparent">');
});
it('should place the initial row as table header cells', () => {
expect(parsedMarkdown).toContain('<th>Sports</th>');
expect(parsedMarkdown).toContain('<th>Season</th>');
});
it('should place the subsequent rows as regular table cells', () => {
expect(parsedMarkdown).toContain('<td>Baseball</td>');
expect(parsedMarkdown).toContain('<td>Year Round</td>');
});
});