Files
openlayers/test/spec/ol/layer/heatmaplayer.test.js
2015-04-13 21:13:27 +02:00

17 lines
334 B
JavaScript

goog.provide('ol.test.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);
});
});
});
goog.require('ol.layer.Heatmap');