From ce7872c100b0bb46fd325f468abeb35aaba222fa Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Wed, 28 Dec 2022 17:56:34 +0000
Subject: [PATCH] feat(nvim): use --testdox when running PHPUnit

---
 config/neovim/after/plugin/vim-test.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/neovim/after/plugin/vim-test.lua b/config/neovim/after/plugin/vim-test.lua
index 54a82e87..a76c3bd6 100644
--- a/config/neovim/after/plugin/vim-test.lua
+++ b/config/neovim/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'
 ]])