mirror of https://github.com/webpack/webpack.git
10 lines
242 B
JavaScript
10 lines
242 B
JavaScript
|
var should = require("should");
|
||
|
|
||
|
var typeofLibrary2 = typeof library2;
|
||
|
|
||
|
describe("library2", function() {
|
||
|
it("should run before main", function() {
|
||
|
typeofLibrary2.should.be.eql("undefined");
|
||
|
});
|
||
|
});
|
||
|
exports.library2common = { ok2: true };
|