UNPKG
googlemap
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
A simple module for displaying Google Maps
github.com/mikefrancis/googlemap
mikefrancis/googlemap
googlemap
/
test
/
index.js
16 lines
(10 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
assert
from
'assert'
;
import
GoogleMap
from
'./../src/index'
;
import
jsdom
from
'mocha-jsdom'
;
describe
(
'GoogleMap'
,
() =>
{
jsdom
();
it
(
'does stuff'
,
() =>
{
let
canvas =
document
.
createElement
(
'div'
);
new
GoogleMap
(canvas); }); });