Add missing requires to rendering tests

This commit is contained in:
Tim Schaub
2016-08-11 22:29:41 -06:00
parent bd015eabe4
commit 85d4fb6ac4
2 changed files with 5 additions and 1 deletions

View File

@@ -1,12 +1,15 @@
goog.provide('ol.test.rendering.layer.Vector');
goog.require('ol.Feature');
goog.require('ol.Map');
goog.require('ol.View');
goog.require('ol.Feature');
goog.require('ol.geom.Circle');
goog.require('ol.geom.LineString');
goog.require('ol.geom.Polygon');
goog.require('ol.layer.Vector');
goog.require('ol.source.Vector');
goog.require('ol.style.Stroke');
goog.require('ol.style.Style');
describe('ol.rendering.layer.Vector', function() {