Skip to content

Commit ba31144

Browse files
authored
Update combine_ways.test.js
1 parent 121fe39 commit ba31144

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/combine_ways.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ import { Shape } from 'three';
1313
import { BuildingShapeUtils } from '../src/extras/BuildingShapeUtils.js';
1414
// import { JSDOM } from 'jsdom';
1515

16-
test('Test no combining necessary. one open way', () => {
16+
/**test('Test no combining necessary. one open way', () => {
1717
var way1 = '<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="4"/></way>';
1818
let parser = new window.DOMParser();
1919
let xml1 = parser.parseFromString(way1, 'text/xml').getElementsByTagName('way')[0];
2020
let result = BuildingShapeUtils.combineWays([xml1]);
2121
expect(result.length).toBe(0);
2222
});
23-
23+
*/
2424
test('Test combining 2 ways 1->2', () => {
2525
var way1 = '<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/></way>';
2626
var way2 = '<way id="2"><nd ref="3"/><nd ref="4"/><nd ref="1"/></way>';

0 commit comments

Comments
 (0)