nixpkgs/home/programs/neovim/plugins/test.vim
Daniel Siepmann c07db5167f
Remove PHPUnit testdox output format
As this will hide errors which is not helpful during development.
2023-11-29 10:48:31 +01:00

19 lines
537 B
VimL

let g:test#strategy = 'neoterm'
" configure additional options per test kind.
" e.g. add --debug for nearest to get additional information during
" development of the test.
let g:test#php#codeception#options = {
\ 'nearest': '--env local --html --debug',
\ 'file': '--env local --html --debug',
\}
let g:test#php#codeception#options = {
\ 'nearest': '--env production --debug',
\ 'file': '--env production --debug',
\}
if !exists('g:test#php#codeception#suite')
let g:test#php#codeception#suite = 'acceptance'
endif