Wait For Network Calls to Finish During Test Runs
By default, new projects in BlinqIO come with the networkidle
setting in ai_config.json
set to false
. This helps tests run faster by skipping unnecessary waits for network calls to complete at each step.
However, if your test depends on network calls finishing before moving to the next step, setting networkidle
to true
can prevent test failures.
How to Set networkidle
to true
In
ai_config.json
, changenetworkidle
fromfalse
totrue
.Test your changes by running the tests locally in VS Code.
Upload the updated
ai_config.json
back to your BlinqIO project. See Uploading the Modified Code for instructions.