Skip to content

Commit

Permalink
test: Don't use minification for speed measurement
Browse files Browse the repository at this point in the history
  • Loading branch information
jantimon committed Nov 11, 2019
1 parent de22fc2 commit 2549557
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/caching.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ describe('HtmlWebpackPluginCaching', () => {
it('should not slow down linear (10 plugins should not take 2.5 as much time as a 1 plugin)', done => {
const template = path.join(__dirname, 'fixtures/plain.html');
const createHtmlWebpackPlugin = () => new HtmlWebpackPlugin({
template: template
template: template,
minify: false
});
let singlePluginCompileStart;
let singleCompileRunDuration;
Expand Down

0 comments on commit 2549557

Please sign in to comment.