Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit of turf/boolean-within #924

Merged
merged 12 commits into from
Sep 5, 2017
10 changes: 1 addition & 9 deletions packages/turf-simplify/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const path = require('path');
const load = require('load-json-file');
const write = require('write-json-file');
const truncate = require('@turf/truncate');
const {polygon, multiPolygon} = require('@turf/helpers');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rowanwins Don't know why @turf/simplify was modified in this PR. 🤷‍♂️

const {polygon} = require('@turf/helpers');
const simplify = require('./');

const directories = {
Expand Down Expand Up @@ -72,11 +72,3 @@ test('simplify -- issue #555', t => {
t.throws(() => simplify(poly4, 0.000001, true), /invalid polygon/);
t.end();
});

test('simplify -- issue #918', t => {
// simplify hangs on this input #918
t.skip('issue #918', multiPolygon([[[[0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90]]]]));
t.skip('issue #918', multiPolygon([[[[0, 1], [0, 2], [0, 3], [0, 2.5], [0, 1]]]]));
t.skip('issue #918', multiPolygon([[[[0, 1], [0, 1], [1, 2], [0, 1]]]]));
t.end();
});