Files
openlayers/test/spec/ol/layer/heatmap.test.js
2016-08-08 09:58:11 -06:00

18 lines
335 B
JavaScript

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