mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 17:16:25 +00:00
2d2e95c747
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Jamie Magee <jamie.magee@gmail.com> Co-authored-by: Jamie Magee <JamieMagee@users.noreply.github.com>
16 lines
478 B
TypeScript
16 lines
478 B
TypeScript
import { getName } from '../../test/util';
|
|
import { parse } from './html';
|
|
|
|
describe(getName(__filename), () => {
|
|
it('parses HTML', () => {
|
|
const body = parse('<div>Hello, world!</div>');
|
|
expect(body.childElementCount).toBe(1);
|
|
const div = body.children[0];
|
|
expect(div.tagName).toBe('DIV');
|
|
expect(div.textContent).toBe('Hello, world!');
|
|
});
|
|
it('returns empty', () => {
|
|
const body = parse('');
|
|
expect(body.childElementCount).toBe(0);
|
|
});
|
|
});
|