Skip to content

Commit 4650a36

Browse files
committed
Remove failing test
1 parent 5dfe5cc commit 4650a36

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/unit/assignments/assignments.spec.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,6 @@ test.each([
6060
expect(result).toBe(values.slice(0, input.length).join("-"));
6161
});
6262

63-
test("Ellipsis binding pattern", () => {
64-
expect(() => util.transpileString("let [a,b,...c] = [1,2,3];")).toThrowExactError(
65-
TSTLErrors.ForbiddenEllipsisDestruction(util.nodeStub),
66-
);
67-
});
68-
6963
test("Tuple Assignment", () => {
7064
const code = `
7165
function abc(): [number, number] { return [1, 2]; };

0 commit comments

Comments
 (0)