webpack/test/cases/runtime/require-function/index.js

10 lines
299 B
JavaScript

__webpack_modules__;
require.cache;
__webpack_public_path__;
it("should have correct properties on the require function", function() {
expect(__webpack_require__.c).toBeTypeOf("object");
expect(__webpack_require__.m).toBeTypeOf("object");
expect(__webpack_require__.p).toBeTypeOf("string");
});