Skip to content

Commit

Permalink
HARMONY-2013: Remove test debug log printing out GeoJSON.
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-durbin committed Feb 12, 2025
1 parent 2360919 commit 8726534
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions services/harmony/test/geojson-normalizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ describe('convertPointsToPolygons', () => {
const expectedOutputJson = fs.readFileSync(path.resolve(__dirname, `resources/${expectedOutputFile}.geojson`), 'utf8');

const normalizedGeoJson = convertPointsToPolygons(testGeoJson);
console.log(`${JSON.stringify(normalizedGeoJson, null, 2)}`);
it('should convert Points to Polygons', function () {
expect(normalizedGeoJson.features[0].geometry.type).to.equal('Polygon');
expect(JSON.stringify(normalizedGeoJson, null, 2)).to.eql(expectedOutputJson);
Expand All @@ -530,7 +529,6 @@ describe('convertPointsToPolygons', () => {
const expectedOutputJson = fs.readFileSync(path.resolve(__dirname, `resources/${expectedOutputFile}.geojson`), 'utf8');

const normalizedGeoJson = convertPointsToPolygons(testGeoJson);
console.log(`${JSON.stringify(normalizedGeoJson, null, 2)}`);
it('should convert MultiPoints to MultiPolygons', function () {
expect(normalizedGeoJson.features[0].geometry.type).to.equal('MultiPolygon');
expect(JSON.stringify(normalizedGeoJson, null, 2)).to.eql(expectedOutputJson);
Expand Down

0 comments on commit 8726534

Please sign in to comment.