Files
connect/packages/app/tests/ts/scripts/dom.test.ts
Thomas Osmonson 17d80339e8 init commit
2019-09-03 16:47:10 -05:00

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);
});
});