Cédric Chatelain
Cédric Chatelain
Added detail: I tried running the command on my repo with a github action just in case it came from my os or specific system. And it also seems to...
I gave up using `test_coverage`, now I'm using the `coverage` package by itself. It doesn't create the test_all.dart file but it's easy to maintain by hand. If you want to...
The problem come from `gui.App.argv.length` if you use `gui.App.argv[0]` directly in the string, it works. But if you put something like : `var a = gui.App.argv.length;` before the `querySelector`, the...
@eric-taix thank you fro this very detailed answer and my apologies for the delay in mine. Your example really made it click for me. Especially how you setup everything with...
Since this is still open here is a trick to reload the path in powershell (integrated or not): ```powershell $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") ```