16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
import _ol_DeviceOrientation_ from '../../../src/ol/DeviceOrientation.js';
|
|
|
|
|
|
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_);
|
|
});
|
|
|
|
});
|
|
|
|
});
|