webpack/test/cases/parsing/harmony-edge-cases/index.js

9 lines
191 B
JavaScript
Raw Normal View History

2016-05-05 23:09:59 +08:00
import { a } from "./a";
import x, { b } from "./b";
it("should be able to use exported function", function() {
a.should.be.eql("ok");
b.should.be.eql("ok");
x().should.be.eql("ok");
});