File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -378,17 +378,23 @@ def test_request_blocking(self):
378378 t2 = Thread (
379379 target = self .compile_bundles ,
380380 args = ('webpack.config.app2.js' , wait_for ))
381+ t3 = Thread (
382+ target = self .compile_bundles ,
383+ args = ('webpack.config.getFiles.js' , wait_for ))
381384 t .start ()
382385 t2 .start ()
386+ t3 .start ()
383387 result .rendered_content
384388 elapsed = time .time () - then
385389 t .join ()
386390 t2 .join ()
391+ t3 .join ()
387392 self .assertTrue (elapsed >= wait_for )
388393
389394 with self .settings (DEBUG = False ):
390395 self .compile_bundles ('webpack.config.simple.js' )
391396 self .compile_bundles ('webpack.config.app2.js' )
397+ self .compile_bundles ('webpack.config.getFiles.js' )
392398 then = time .time ()
393399 request = self .factory .get ('/' )
394400 result = view (request )
You can’t perform that action at this time.
0 commit comments