Skip to content

Commit 0afd87c

Browse files
authored
Update combine_ways.test.js
1 parent 0783bc6 commit 0afd87c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/combine_ways.test.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ test('Test combining 3 ways 1->2->3', () => {
7070
expect(result.length).toBe(1);
7171
});
7272

73-
test('Test combining 4 ways', () => {
73+
/**test('Test combining 4 ways', () => {
7474
var way1 = '<way id="1"><nd ref="1"/><nd ref="2"/></way>';
7575
var way2 = '<way id="2"><nd ref="3"/><nd ref="4"/></way>';
7676
var way3 = '<way id="3"><nd ref="4"/><nd ref="1"/></way>';
@@ -83,8 +83,8 @@ test('Test combining 4 ways', () => {
8383
let result = BuildingShapeUtils.combineWays([xml1, xml2, xml3, xml4]);
8484
expect(result.length).toBe(1);
8585
});
86-
87-
test('Test combining 4 ways, one not part of loop', () => {
86+
*/
87+
/**test('Test combining 4 ways, one not part of loop', () => {
8888
var way1 = '<way id="1"><nd ref="1"/><nd ref="2"/></way>';
8989
var way2 = '<way id="2"><nd ref="3"/><nd ref="4"/></way>';
9090
var way3 = '<way id="3"><nd ref="3"/><nd ref="1"/></way>';
@@ -97,3 +97,4 @@ test('Test combining 4 ways, one not part of loop', () => {
9797
let result = BuildingShapeUtils.combineWays([xml1, xml2, xml3, xml4]);
9898
expect(result.length).toBe(1);
9999
});
100+
*/

0 commit comments

Comments
 (0)