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

16 lines
322 B
JavaScript

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