From d8c5b1c7fbd4fab84c7e1dc2f187e451376842f7 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 28 Dec 2022 17:56:34 +0000 Subject: [PATCH] feat(nvim): use --testdox when running PHPUnit --- after/plugin/vim-test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/plugin/vim-test.lua b/after/plugin/vim-test.lua index 54a82e8..a76c3bd 100644 --- a/after/plugin/vim-test.lua +++ b/after/plugin/vim-test.lua @@ -16,5 +16,5 @@ vim.cmd([[ let test#strategy = "floaterm" let test#php#phpunit#executable = 'just test' - let test#php#phpunit#options = '--colors=always' + let test#php#phpunit#options = '--colors=always --testdox' ]])