Files
openlayers/test/spec/ol/control/zoom.test.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

15 lines
329 B
JavaScript

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