Skip to content

Commit

Permalink
fix(nvim): update go test args
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jun 17, 2024
1 parent ad92279 commit 6c1ee57
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nvim-fredrik/lua/lang/go.lua
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,12 @@ return {
go_test_args = {
"-v",
"-race",
"-count=1",
"-coverprofile=" .. vim.fn.getcwd() .. "/coverage.out",
-- "-count=1",
"-coverprofile="
.. vim.fn.getcwd()
.. "/coverage.out",
"-parallel=1",
"-p=2",
},
dap_go_enabled = true,
}
Expand Down

0 comments on commit 6c1ee57

Please sign in to comment.