File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ describe('HtmlWebpackPluginCaching', () => {
202202 . then ( done ) ;
203203 } ) ;
204204
205- it ( 'should not slow down linear (10 plugins should not take twice as much time as a 1 plugin)' , done => {
205+ it ( 'should not slow down linear (10 plugins should not take 2.5 as much time as a 1 plugin)' , done => {
206206 const template = path . join ( __dirname , 'fixtures/plain.html' ) ;
207207 const createHtmlWebpackPlugin = ( ) => new HtmlWebpackPlugin ( {
208208 template : template
@@ -236,7 +236,7 @@ describe('HtmlWebpackPluginCaching', () => {
236236 const multiCompileRunDurationInNs = multiCompileRunDuration [ 0 ] * 1e9 + multiCompileRunDuration [ 1 ] ;
237237 const speedComarision = multiCompileRunDurationInNs / singleCompileRunDurationInNs * 100 ;
238238
239- expect ( speedComarision ) . toBeLessThan ( 200 ) ;
239+ expect ( speedComarision ) . toBeLessThan ( 250 ) ;
240240 done ( ) ;
241241 } ) ;
242242 } ) ;
You can’t perform that action at this time.
0 commit comments