dotfiles/dot_oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/multi_line_spec.rb

9 lines
224 B
Ruby
Raw Normal View History

describe 'a multi-line suggestion' do
it 'should be displayed on multiple lines' do
2024-02-23 09:52:24 +01:00
with_history("echo \"\n\"") do
session.send_keys('e')
wait_for { session.content }.to eq("echo \"\n\"")
end
end
end