Organize tests

This commit is contained in:
Tim Schaub
2021-04-27 15:41:14 -07:00
parent 278e355795
commit 490cfabe91
599 changed files with 12374 additions and 1603 deletions

View File

@@ -0,0 +1,22 @@
import Map from '../../../../src/ol/Map.js';
import MapboxVector from '../../../../src/ol/layer/MapboxVector.js';
import View from '../../../../src/ol/View.js';
new Map({
layers: [
new MapboxVector({
styleUrl: '/data/styles/bright-v9.json',
accessToken: 'test-token',
}),
],
target: 'map',
view: new View({
center: [1825927.7316762917, 6143091.089223046],
zoom: 15,
}),
});
render({
message: 'Mapbox vector layer renders',
tolerance: 0.025,
});