You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tests): add delay after send_keys in waiter test
Fixes test_wait_for_pane_content_exact_match_detailed failure on tmux 3.1b
where capture_pane() was called immediately after send_keys() before the
content had been flushed/rendered by tmux.
The race condition manifested as:
AssertionError: assert 'UNIQUE_TEST_STRING_123' in ''
Adding a 0.1s delay after send_keys() allows tmux to flush the content
before capture_pane() is called, fixing the timing issue on older versions.
0 commit comments