antv-l7/packages/map/__tests__/map.spec.ts

15 lines
363 B
TypeScript

import { Map } from '../src/map';
describe('Map', () => {
const el = document.createElement('div');
el.id = 'test-div-id';
// el.style.width = '500px';
// el.style.height = '500px';
el.style.background = '#aaa';
document.querySelector('body')?.appendChild(el);
it('init Map', () => {
const map = new Map({
container: el,
});
});
});