File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -1337,7 +1337,7 @@ def effect():
13371337
13381338 async with layout_runner (Layout (Root ())) as runner :
13391339 await runner .render ()
1340- poll (lambda : effect_run_count .current ).until_equals (1 )
1340+ await poll (lambda : effect_run_count .current ).until_equals (1 )
13411341 toggle_condition .current ()
13421342 await runner .render ()
13431343 assert effect_run_count .current == 1
Original file line number Diff line number Diff line change @@ -76,11 +76,6 @@ def ShowSimpleButton():
7676 await display .page .wait_for_selector ("#my-button" )
7777
7878
79- def test_module_from_template_where_template_does_not_exist ():
80- with pytest .raises (ValueError , match = "No template for 'does-not-exist.js'" ):
81- reactpy .web .module_from_template ("does-not-exist" , "something.js" )
82-
83-
8479async def test_module_from_file (display : DisplayFixture ):
8580 SimpleButton = reactpy .web .export (
8681 reactpy .web .module_from_file (
You can’t perform that action at this time.
0 commit comments