Skip to content

Commit b4f974d

Browse files
committed
Added test for new example
1 parent aa6a556 commit b4f974d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/cases/parsing/harmony/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ it("should import a whole module", function() {
2727
abc.a.should.be.eql("a");
2828
abc.b.should.be.eql("b");
2929
abc.c.should.be.eql("c");
30+
abc.d.c.should.be.eql("c");
3031
var copy = (function(a) { return a; }(abc));
3132
copy.a.should.be.eql("a");
3233
copy.b.should.be.eql("b");
3334
copy.c.should.be.eql("c");
35+
copy.d.c.should.be.eql("c");
3436
(typeof abc).should.be.eql("object");
3537
});
3638

0 commit comments

Comments
 (0)