webpack/test/configCases/parsing/harmony-global/index.js

5 lines
147 B
JavaScript

it("should be able to use global in a harmony module", function() {
var x = require("./module1");
expect(x.default === global).toBeTruthy();
});