mirror of https://github.com/webpack/webpack.git
11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
import d from "library";
|
|
import { a, b, external } from "library";
|
|
|
|
it("should be able to import hamorny exports from library", function() {
|
|
d.should.be.eql("default-value");
|
|
a.should.be.eql("a");
|
|
b.should.be.eql("b");
|
|
external.should.be.eql(["external"]);
|
|
external.should.be.equal(require("external"));
|
|
});
|