Add missing test description

This commit is contained in:
Diogo Franco (Kovensky) 2016-11-08 20:55:58 +09:00
parent 1e7bbfef0f
commit a8fd8e5ec6
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});