Hi Community!
I am currently patching dash in a fork and want to use Dash’s tests. I encounter the issue that quite a lot tests pass when I run them individually but not when I execute them in a directory.
I also often see that this assert failes because of a console log that i am not able reproduce manually or works when I run the single test.
assert dash_duo.logs() == []
this is what the console returns
[
{ 'level': 'SEVERE', 'message': 'http://localhost:8050/_dash-component-suites/dash/dash-renderer/build/dash_renderer.v2_18_2m1731420187.min.js ' '1:95209 Object', 'source': 'console-api', 'timestamp': 1731492847228,
},
{ 'level': 'SEVERE', 'message': 'http://localhost:8050/_dash-component-suites/dash/dash-renderer/build/dash_renderer.v2_18_2m1731420187.min.js ' '1:95209 Object', 'source': 'console-api', 'timestamp': 1731492847228,
},
]
I should mention that dash_duo runs with the multi_process_runner instead of the threader_runner in order to run the async loop by Quart.
This is a extensive test result log if it helps flash/TEST_LOGS.md at dev · chgiesse/flash · GitHub
Glad for any help