@dhis2/gis-api
Version:
Maps API for DHIS2 based on Leaflet
13 lines (9 loc) • 326 B
JavaScript
import L from 'leaflet';
import EarthEngine from '../EarthEngine'; // Gives error
describe('DHIS2 Earth Engine', () => {
it('should extend L.LayerGroup', () => {
// let earthengine = new EarthEngine();
// expect(earthengine).toBeInstanceOf(L.LayerGroup);
expect(true).toEqual(true);
});
});