webpack/test/configCases/library/1-use-library/global-test.js

8 lines
261 B
JavaScript

var data = require("library");
it("should be able get items from library (" + NAME + ")", function() {
data.should.have.property("default").be.eql("default-value");
data.should.have.property("a").be.eql("a");
data.should.have.property("b").be.eql("b");
});