Files
openlayers/test/spec/ol/control/zoomtoextent.test.js
2017-12-14 13:08:48 -07:00

15 lines
330 B
JavaScript

import ZoomToExtent from '../../../../src/ol/control/ZoomToExtent.js';
describe('ol.control.ZoomToExtent', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ZoomToExtent();
expect(instance).to.be.an(ZoomToExtent);
});
});
});