Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/testdir/test_terminal.vim
Original file line number Diff line number Diff line change
Expand Up @@ -802,6 +802,11 @@ func Test_terminal_aucmd_on_close()
endfunc

func Test_terminal_term_start_empty_command()
" Workaround: ignore "No Menu" error
if has('gui_macvim') && has('gui_running')
call test_ignore_error('E329')
endif

let cmd = "call term_start('', {'curwin' : 1, 'term_finish' : 'close'})"
call assert_fails(cmd, 'E474')
let cmd = "call term_start('', {'curwin' : 1, 'term_finish' : 'close'})"
Expand Down