18 lines
289 B
JavaScript
18 lines
289 B
JavaScript
|
|
|
|
goog.require('ol.Geolocation');
|
|
|
|
|
|
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);
|
|
});
|
|
|
|
});
|
|
|
|
});
|