mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Reduce timeout for jobs regression test
We've been moving away from full second timeouts, they were piling up.
This commit is contained in:
parent
46911a5e7f
commit
82ef2d19a5
1 changed files with 3 additions and 2 deletions
|
@ -14,9 +14,10 @@ disown foo
|
|||
disown (jobs -p)
|
||||
or exit 0
|
||||
|
||||
# Verify `jobs` output within a function lists background jobs
|
||||
# https://github.com/fish-shell/fish-shell/issues/5824
|
||||
function foo
|
||||
sleep 1 &
|
||||
jobs -c
|
||||
sleep 0.2 &
|
||||
jobs -c
|
||||
end
|
||||
foo
|
||||
|
|
Loading…
Reference in a new issue