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

18 lines
297 B
JavaScript

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