mirror of
https://github.com/zhigang1992/connect.git
synced 2026-03-26 22:39:27 +08:00
10 lines
307 B
TypeScript
Executable File
10 lines
307 B
TypeScript
Executable File
import { createDomAnchor } from '../../../src/ts/scripts/dom';
|
|
|
|
describe('Testing DOM scripts', () => {
|
|
const ANCHOR_ID = 'anchorId';
|
|
test('createDomAnchor - creates the first body element with an id', () => {
|
|
createDomAnchor(ANCHOR_ID);
|
|
expect(document.body.children[0].id).toBe(ANCHOR_ID);
|
|
});
|
|
});
|