We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 842b6cc commit 6d875d0Copy full SHA for 6d875d0
1 file changed
test/Compiler-caching.test.js
@@ -26,7 +26,9 @@ describe("Compiler (caching)", function() {
26
const c = webpack(options);
27
const files = {};
28
c.outputFileSystem = {
29
- join: path.join.bind(path),
+ join: function() {
30
+ return [].join.call(arguments, "/").replace(/\/+/g, "/");
31
+ },
32
mkdirp: function(path, callback) {
33
logs.mkdirp.push(path);
34
callback();
0 commit comments