Skip to content

Commit

Permalink
add missing name argument in test case for validation
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Nov 26, 2020
1 parent ed742e0 commit ca29e7c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/configCases/process-assets/html-plugin/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,14 @@ class HtmlPlugin {
};
compilation.emitAsset(
"index.html",
new OriginalSource(`<html>
new OriginalSource(
`<html>
<body>
${files.map(file => ` ${toScriptTag(file)}`).join("\n")}
</body>
</html>`)
</html>`,
"index.html"
)
);
}
);
Expand Down

0 comments on commit ca29e7c

Please sign in to comment.