Leaflet/spec/suites/control/Control.ScaleSpec.js
John Firebaugh 0b4d2b0c44 Add Map#whenReady
Fixes #1063
2012-10-12 12:54:13 -07:00

7 lines
187 B
JavaScript

describe("Control.Scale", function () {
it("can be added to an unloaded map", function () {
var map = L.map(document.createElement('div'));
new L.Control.Scale().addTo(map);
})
});