(projType)
| 184 | var projTypes = layoutAttributes.projection.type.values; |
| 185 | |
| 186 | function testOne(projType) { |
| 187 | layoutIn = { |
| 188 | geo: { |
| 189 | projection: { |
| 190 | type: projType, |
| 191 | tilt: 30, |
| 192 | distance: 3 |
| 193 | } |
| 194 | } |
| 195 | }; |
| 196 | |
| 197 | supplyLayoutDefaults(layoutIn, layoutOut, fullData); |
| 198 | } |
| 199 | |
| 200 | projTypes.forEach(function(projType) { |
| 201 | testOne(projType); |
no test coverage detected
searching dependent graphs…