Files
openlayers/test/spec/ol/layer/heatmap.test.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

16 lines
335 B
JavaScript

import _ol_layer_Heatmap_ from '../../../../src/ol/layer/Heatmap.js';
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_);
});
});
});