From a8fd8e5ec6fba42b6493c48a6bb127c4119cce79 Mon Sep 17 00:00:00 2001 From: "Diogo Franco (Kovensky)" Date: Tue, 8 Nov 2016 20:55:58 +0900 Subject: [PATCH] Add missing test description --- test/cases/parsing/issue-3238/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cases/parsing/issue-3238/index.js b/test/cases/parsing/issue-3238/index.js index 7d5206ee4..de1e9161b 100644 --- a/test/cases/parsing/issue-3238/index.js +++ b/test/cases/parsing/issue-3238/index.js @@ -1,4 +1,4 @@ -it("should pass", function() { +it("supports empty element in destructuring", function() { const second = ([, x]) => x; second([1, 2]).should.eql(2); });