mirror of https://github.com/webpack/webpack.git
9 lines
191 B
JavaScript
9 lines
191 B
JavaScript
|
|
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");
|
||
|
|
});
|