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):
378
378
t2 = Thread (
379
379
target = self .compile_bundles ,
380
380
args = ('webpack.config.app2.js' , wait_for ))
381
+ t3 = Thread (
382
+ target = self .compile_bundles ,
383
+ args = ('webpack.config.getFiles.js' , wait_for ))
381
384
t .start ()
382
385
t2 .start ()
386
+ t3 .start ()
383
387
result .rendered_content
384
388
elapsed = time .time () - then
385
389
t .join ()
386
390
t2 .join ()
391
+ t3 .join ()
387
392
self .assertTrue (elapsed >= wait_for )
388
393
389
394
with self .settings (DEBUG = False ):
390
395
self .compile_bundles ('webpack.config.simple.js' )
391
396
self .compile_bundles ('webpack.config.app2.js' )
397
+ self .compile_bundles ('webpack.config.getFiles.js' )
392
398
then = time .time ()
393
399
request = self .factory .get ('/' )
394
400
result = view (request )
You can’t perform that action at this time.
0 commit comments