This commit is contained in:
Olivier Guyot
2019-05-14 19:14:12 +02:00
parent 9ca75e9d43
commit c705775d75
5 changed files with 35 additions and 35 deletions
@@ -15,18 +15,18 @@ describe('ol.renderer.webgl.PointsLayer', function() {
let target;
beforeEach(function () {
beforeEach(function() {
target = document.createElement('div');
target.style.width = '256px';
target.style.height = '256px';
document.body.appendChild(target);
});
afterEach(function () {
afterEach(function() {
document.body.removeChild(target);
});
it('creates a new instance', function () {
it('creates a new instance', function() {
const layer = new VectorLayer({
source: new VectorSource()
});