mirror of https://gitee.com/antv-l7/antv-l7
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
|
import BaseLayer from '../src/layer/baseLayer';
|
||
|
describe('baseLayer', () => {
|
||
|
it('set option', () => {
|
||
|
const option = {
|
||
|
adcode: [],
|
||
|
};
|
||
|
// const layer = new BaseLayer(null, option);
|
||
|
});
|
||
|
});
|