set nocompatible let &rtp = '../..,' . &rtp filetype plugin on nnoremap q :qall! if vimtex#util#is_win() | quitall | endif let s:output = vimtex#jobs#capture("echo 'a\nb'") call assert_equal(['a', 'b'], s:output) let s:output = vimtex#jobs#capture("echobaad foobar") call assert_match('not found', s:output[0]) call vimtex#test#finished()