Files
openlayers/test/spec/ol/deviceorientation.test.js
2017-08-17 15:16:58 -04:00

18 lines
313 B
JavaScript

goog.require('ol.DeviceOrientation');
describe('ol.DeviceOrientation', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.DeviceOrientation();
expect(instance).to.be.an(ol.DeviceOrientation);
});
});
});