2017-02-17 02:18:03 +00:00
|
|
|
describe 'a running zpty command' do
|
2017-02-17 22:51:50 +00:00
|
|
|
let(:before_sourcing) { -> { session.run_command('zmodload zsh/zpty && zpty -b kitty cat') } }
|
|
|
|
|
2017-02-17 02:18:03 +00:00
|
|
|
it 'is not affected by running zsh-autosuggestions' do
|
2017-02-17 22:51:50 +00:00
|
|
|
sleep 1 # Give a little time for precmd hooks to run
|
|
|
|
session.run_command('zpty -t kitty; echo $?')
|
2017-02-17 02:18:03 +00:00
|
|
|
|
2017-02-26 21:18:22 +00:00
|
|
|
wait_for { session.content }.to end_with("\n0")
|
2017-02-17 02:18:03 +00:00
|
|
|
end
|
|
|
|
end
|