Skip to content

Commit

Permalink
test: update
Browse files Browse the repository at this point in the history
  • Loading branch information
cap-Bernardito committed Apr 29, 2021
1 parent 638f539 commit 83d8ca3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/loader.js
Expand Up @@ -196,6 +196,7 @@ export function pitch(request) {
);
return;
}

this.importModule(
`${this.resourcePath}.webpack[javascript/auto]!=!${request}`,
{
Expand Down
Expand Up @@ -73,7 +73,7 @@ __webpack_require__.r(__webpack_exports__);
/******/
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => ("acd0bc1ae24d05fdac73")
/******/ __webpack_require__.h = () => ("619e4b98882ea3a2aba3")
/******/ })();
/******/
/******/ /* webpack/runtime/global */
Expand Down
3 changes: 2 additions & 1 deletion test/cases/new-url-with-public-path-auto/test.filter.js
@@ -1,3 +1,4 @@
const webpack = require('webpack');

module.exports = () => webpack.version[0] !== '4';
module.exports = () =>
webpack.version[0] !== '4' && !process.env.EXPERIMENTAL_USE_IMPORT_MODULE;
3 changes: 2 additions & 1 deletion test/cases/new-url-with-public-path/test.filter.js
@@ -1,3 +1,4 @@
const webpack = require('webpack');

module.exports = () => webpack.version[0] !== '4';
module.exports = () =>
webpack.version[0] !== '4' && !process.env.EXPERIMENTAL_USE_IMPORT_MODULE;

0 comments on commit 83d8ca3

Please sign in to comment.