mirror of https://gitee.com/antv-l7/antv-l7
12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
// @ts-ignore
|
|
describe('template', () => {
|
|
const el = document.createElement('div');
|
|
el.id = 'test-div-id';
|
|
el.innerHTML = 'hello L7';
|
|
document.querySelector('body')?.appendChild(el);
|
|
|
|
it('div content', () => {
|
|
expect(document.querySelector('#test-div-id')?.innerHTML).toBe('hello L7');
|
|
});
|
|
});
|