Skip to content

Commit 10b208e

Browse files
committed
un-skip 2d.path.arc.nonfinite; now fixed
1 parent 73d7893 commit 10b208e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/wpt/generate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const yamlFiles = fs.readdirSync(__dirname).filter(f => f.endsWith(".yaml"));
99
const SKIP_FILES = new Set("meta.yaml");
1010
// Tests that should be skipped (e.g. because they cause hangs or V8 crashes):
1111
const SKIP_TESTS = new Set([
12-
"2d.path.arc.nonfinite", // https://github.com/Automattic/node-canvas/issues/2055
1312
"2d.imageData.create2.negative",
1413
"2d.imageData.create2.zero",
1514
"2d.imageData.create2.nonfinite",

test/wpt/generated/path-objects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ describe("WPT: path-objects", function () {
16141614
_assertPixel(canvas, 98,48, 0,255,0,255);
16151615
});
16161616

1617-
it.skip("2d.path.arc.nonfinite", function () {
1617+
it("2d.path.arc.nonfinite", function () {
16181618
// arc() with Infinity/NaN is ignored
16191619
const canvas = createCanvas(100, 50);
16201620
const ctx = canvas.getContext("2d");

0 commit comments

Comments
 (0)