fish-shell/tests/checks/tmux-prompt.fish
ridiculousfish 5eb5aaf9da tmux-prompt test to wait a bit to allow the first prompt to draw
The tmux-prompt test would sometimes fail because the first call was:

     isolated-tmux capture-pane -p

this would run a capture-pane which would race with starting fish
itself; occasionally the pane would be empty since fish has not yet
drawn a prompt. Add a loop to give fish time to draw the prompt.
2021-09-04 16:59:50 -07:00

27 lines
636 B
Fish

#RUN: %fish %s
#REQUIRES: command -v tmux
set -g isolated_tmux_fish_extra_args -C '
function fish_prompt; printf "prompt $status_generation> <$prompt_var> "; end
function on_prompt_var --on-variable prompt_var
commandline -f repaint
end
'
# Start it up and loop a bit, until we get an initial prompt.
isolated-tmux
for i in seq 10
if string match -q '*prompt*' (isolated-tmux capture-pane -p)
break
end
sleep .5
end
isolated-tmux capture-pane -p
# CHECK: prompt 0> <>
set -q CI && set sleep sleep 10
set -U prompt_var changed
$sleep
isolated-tmux capture-pane -p
# CHECK: prompt 0> <changed>