Example of a blocking testcase.
In test.py, time.sleep(1) will block Sublime Text and async_insert_hello_world wouldn't have a chance to be execulated before the line of assertion. Therefore, the option of async will be necessary.
Example of a blocking testcase.
In test.py, time.sleep(1) will block Sublime Text and async_insert_hello_world wouldn't have a chance to be execulated before the line of assertion. Therefore, the option of async will be necessary.