@@ -46,7 +46,7 @@ describe('geo.core.osmLayer', function () {
4646 done : ( ) => done ( )
4747 } ) ;
4848 } ) ;
49- it ( 'next animation' , function ( done ) {
49+ it ( 'next animation 1 ' , function ( done ) {
5050 map . transition ( {
5151 center : { x : 37.6167 , y : 55.7500 } ,
5252 duration : 500 ,
@@ -56,7 +56,7 @@ describe('geo.core.osmLayer', function () {
5656 done : ( ) => done ( )
5757 } ) ;
5858 } ) ;
59- it ( 'next animation' , function ( done ) {
59+ it ( 'next animation 2 ' , function ( done ) {
6060 map . transition ( {
6161 center : { x : 28.9550 , y : 41.0136 } ,
6262 duration : 500 ,
@@ -80,7 +80,7 @@ describe('geo.core.osmLayer', function () {
8080 done : ( ) => done ( )
8181 } ) ;
8282 } ) ;
83- it ( 'next animation' , function ( done ) {
83+ it ( 'next animation 3 ' , function ( done ) {
8484 map . transition ( {
8585 center : { x : 37.6167 , y : 55.7500 } ,
8686 duration : 500 ,
@@ -90,7 +90,7 @@ describe('geo.core.osmLayer', function () {
9090 done : ( ) => done ( )
9191 } ) ;
9292 } ) ;
93- it ( 'next animation' , function ( done ) {
93+ it ( 'next animation 4 ' , function ( done ) {
9494 map . transition ( {
9595 center : { x : 19.0514 , y : 47.4925 } ,
9696 rotation : Math . PI * 2 ,
@@ -256,18 +256,18 @@ describe('geo.core.osmLayer', function () {
256256 */
257257 var angles = { 0 : 21 , 180 : 21 } ;
258258 $ . each ( angles , function ( angle , numTiles ) {
259- it ( ' null default' , function ( ) {
259+ it ( ` null default ${ angle } ` , function ( ) {
260260 map = create_map ( ) ;
261261 if ( angle ) {
262262 map . rotation ( parseFloat ( angle ) * Math . PI / 180 ) ;
263263 }
264264 layer = map . createLayer ( 'osm' , { renderer : null , url : '/testdata/white.jpg' } ) ;
265265 expect ( map . node ( ) . find ( '[data-tile-layer="0"]' ) . length ) . toBe ( 1 ) ;
266266 } ) ;
267- waitForIt ( ' null tiles to load' , function ( ) {
267+ waitForIt ( ` null tiles to load ${ angle } ` , function ( ) {
268268 return $ ( '[tile-reference]' ) . length === numTiles ;
269269 } ) ;
270- it ( ' check null tiles and switch to svg' , function ( ) {
270+ it ( ` check null tiles and switch to svg ${ angle } ` , function ( ) {
271271 positions = { } ;
272272 $ . each ( $ ( '[tile-reference]' ) , function ( ) {
273273 var ref = $ ( this ) . attr ( 'tile-reference' ) . split ( '_' ) . slice ( 0 , 3 ) . join ( '_' ) ;
@@ -277,10 +277,10 @@ describe('geo.core.osmLayer', function () {
277277 layer = map . createLayer ( 'osm' , { renderer : 'svg' , url : '/testdata/white.jpg' } ) ;
278278 expect ( map . node ( ) . find ( '[data-tile-layer="0"]' ) . length ) . toBe ( 0 ) ;
279279 } ) ;
280- waitForIt ( ' svg tiles to load' , function ( ) {
280+ waitForIt ( ` svg tiles to load ${ angle } ` , function ( ) {
281281 return $ ( 'image[reference]' ) . length === numTiles ;
282282 } ) ;
283- it ( ' compare tile offsets at angle ' + angle , function ( ) {
283+ it ( ` compare tile offsets at angle ${ angle } ` , function ( ) {
284284 $ . each ( $ ( 'image[reference]' ) , function ( ) {
285285 var ref = $ ( this ) . attr ( 'reference' ) . split ( '_' ) . slice ( 0 , 3 ) . join ( '_' ) ;
286286 /* Only check the top level */
@@ -291,7 +291,7 @@ describe('geo.core.osmLayer', function () {
291291 }
292292 } ) ;
293293 } ) ;
294- it ( ' destroy' , destroy_map ) ;
294+ it ( ` destroy ${ angle } ` , destroy_map ) ;
295295 } ) ;
296296 } ) ;
297297 } ) ;
@@ -405,7 +405,7 @@ describe('geo.core.osmLayer', function () {
405405 layer . baseQuad = undefined ;
406406 expect ( layer . baseQuad ) . toBe ( undefined ) ;
407407 } ) ;
408- it ( 'destroy' , destroy_map ) ;
408+ it ( 'destroy 2 ' , destroy_map ) ;
409409 } ) ;
410410
411411 describe ( 'geo.webgl.osmLayer' , function ( ) {
@@ -474,7 +474,7 @@ describe('geo.core.osmLayer', function () {
474474 waitForIt ( 'map to draw after visible true' , function ( ) {
475475 return Object . keys ( layer . activeTiles ) . length === 25 ;
476476 } ) ;
477- it ( 'destroy' , destroy_map ) ;
477+ it ( 'destroy 2 ' , destroy_map ) ;
478478 } ) ;
479479
480480 describe ( 'osmLayer' , function ( ) {
0 commit comments