@@ -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