Reduce timeout for jobs regression test

We've been moving away from full second timeouts, they were piling up.
This commit is contained in:
Mahmoud Al-Qudsi 2019-04-19 02:20:55 -05:00
parent 46911a5e7f
commit 82ef2d19a5

View file

@ -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