Files
openlayers/test/spec/ol/layer/heatmap.test.js
2017-12-18 13:29:52 +01:00

16 lines
317 B
JavaScript

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