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