mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
3dbd9afaec
Only a problem in synchronous mode
23 lines
694 B
Ruby
23 lines
694 B
Ruby
describe 'a running zpty command' do
|
|
let(:before_sourcing) { -> { session.run_command('zmodload zsh/zpty && zpty -b kitty cat') } }
|
|
|
|
context 'when sourcing the plugin' do
|
|
it 'is not affected' do
|
|
sleep 1 # Give a little time for precmd hooks to run
|
|
session.run_command('zpty -t kitty; echo $?')
|
|
|
|
wait_for { session.content }.to end_with("\n0")
|
|
end
|
|
end
|
|
|
|
context 'when using `completion` strategy' do
|
|
let(:options) { ["ZSH_AUTOSUGGEST_STRATEGY=completion"] }
|
|
|
|
it 'is not affected' do
|
|
session.send_keys('a').send_keys('C-h')
|
|
session.run_command('zpty -t kitty; echo $?')
|
|
|
|
wait_for { session.content }.to end_with("\n0")
|
|
end
|
|
end
|
|
end
|