Files
openlayers/test/browser/spec/ol/control/zoomtoextent.test.js
2021-04-28 09:23:33 -07:00

11 lines
334 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 () {
const instance = new ZoomToExtent();
expect(instance).to.be.an(ZoomToExtent);
});
});
});