This seems to only happen on Windows, but nextest hangs after all tests have run. I have a lot of leaky tests because I'm spawning a cli that runs for the entire test run and I cannot kill it until I do so manually as part of my ci.

Is there something I can do to determine why it's hanging only on Windows? Anything I can do to prevent the hanging?
.config/nextest.toml
[profile.ci]
fail-fast = false
retries = 2
slow-timeout = { period = "60s", terminate-after = 3 }
status-level = "fail"
final-status-level = "fail"
This seems to only happen on Windows, but nextest hangs after all tests have run. I have a lot of leaky tests because I'm spawning a cli that runs for the entire test run and I cannot kill it until I do so manually as part of my ci.
Is there something I can do to determine why it's hanging only on Windows? Anything I can do to prevent the hanging?
.config/nextest.toml