From ebaa79d6c2d67028b725898814e43e76d170a73c Mon Sep 17 00:00:00 2001 From: Natercio Moniz Date: Fri, 6 Mar 2026 11:36:24 +0000 Subject: [PATCH] stop warning me about test name duplicates --- lua/plugins/neotest.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/plugins/neotest.lua diff --git a/lua/plugins/neotest.lua b/lua/plugins/neotest.lua new file mode 100644 index 0000000..818f60d --- /dev/null +++ b/lua/plugins/neotest.lua @@ -0,0 +1,13 @@ +return { + { + "nvim-neotest/neotest", + optional = true, + opts = { + adapters = { + ["neotest-golang"] = { + warn_test_name_dupes = false, + }, + }, + }, + }, +}