webpack/test/browsertest/node_modules/library2/lib/common.js

10 lines
242 B
JavaScript
Raw Normal View History

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 };