neotest-go icon indicating copy to clipboard operation
neotest-go copied to clipboard

Results 38 neotest-go issues
Sort by recently updated
recently updated
newest added

Hi, it would be handy to support calling run() from an actual Function implementation, and let neotest-go find its test, so we can run the test without having to find...

Using the following test example: `func TestSomeTest(t *testing.T) { tt := []struct { name string method string url string apiKey string status int }{ {name: "AccessDenied1", method: http.MethodGet, url: "/api/nothing",...

Am I supposed to see virtual text like shown in the readme? I am only seeing the icon for passed/failed as virtual text ![image](https://user-images.githubusercontent.com/25869544/197856144-66e897f5-336f-42db-8b40-65be20d8672c.png)

Fix #25 Solution; track non json compiler output lines in a separate table as a build message. Add it at the top of the output of every test, as this...

The `go test -json` package has a tendency to include non-json output in some cases. For example when one (distant) sub-package doesn't compile. As a result of this, if I...

Here's my setup, maybe it has to do with having a conflicting module? ```lua use({ "nvim-neotest/neotest", requires = { "nvim-neotest/neotest-go", "mrcjkb/neotest-haskell", "haydenmeade/neotest-jest", "nvim-neotest/neotest-plenary", "nvim-neotest/neotest-python", "rouge8/neotest-rust", }, config = function() require("neotest").setup({...

Hi, thank you for the plugin. When using the frameworks' [suite](https://github.com/stretchr/testify#suite-package) feature, this plugin fails to run individual tests. Since the usage of the [Testify](https://github.com/stretchr/testify) in Go projects has been...

This is a starting point to add DAP support. Current status - [x] Test* functions - [ ] Sub test functions with `t.Run` - [x] Example* functions - [ ]...