From ba9216f54e6bf211b80b79b172e60621822a2d1c Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Thu, 4 Jul 2024 08:55:20 +0200 Subject: [PATCH] docs: add note on experimental options (#91) --- lua/neotest-golang/options.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/neotest-golang/options.lua b/lua/neotest-golang/options.lua index 401b1be2..1a4f6dfc 100644 --- a/lua/neotest-golang/options.lua +++ b/lua/neotest-golang/options.lua @@ -5,13 +5,15 @@ local M = {} local opts = { - runner = "go", -- or "gotestsum" go_test_args = { "-v", "-race", "-count=1" }, - gotestsum_args = { "--format=standard-verbose" }, dap_go_enabled = false, dap_go_opts = {}, warn_test_name_dupes = true, warn_test_not_executed = true, + + -- experimental, for now undocumented, options + runner = "go", -- or "gotestsum" + gotestsum_args = { "--format=standard-verbose" }, dev_notifications = false, }