UNPKG
@dhis2/gis-api
Version:
latest (31.1.0)
34.0.11
34.0.10
34.0.9
34.0.8
34.0.7
34.0.6
34.0.5
34.0.3
34.0.2
34.0.1
34.0.0
33.0.11
33.0.10
33.0.9
33.0.8
33.0.7
33.0.6
33.0.5
33.0.4
33.0.3
33.0.2
33.0.1
32.0.26
32.0.25
32.0.24
32.0.23
32.0.22
32.0.21
32.0.20
32.0.19
32.0.18
32.0.17
32.0.15
32.0.14
32.0.12
32.0.11
32.0.10
32.0.9
32.0.8
32.0.7
32.0.6
32.0.5
32.0.4
32.0.3
32.0.1
31.1.0
31.0.7
31.0.6
31.0.4
31.0.3
30.0.0
29.0.13
29.0.12
29.0.11
Maps API for DHIS2 based on Leaflet
github.com/dhis2/gis-api
dhis2/gis-api
@dhis2/gis-api
/
src
/
layers
/
__tests__
/
Boundary.spec.js
11 lines
(8 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
L
from
'leaflet'
;
import
{
Boundary
}
from
'../Boundary'
;
describe
(
'DHIS2 boundary layer'
,
() =>
{
it
(
'should extend L.GeoJSON'
,
() =>
{
const
boundary =
new
Boundary
({});
expect
(boundary).
toBeInstanceOf
(L.
GeoJSON
); }); });