maybe it can help?

This commit is contained in:
Smirnov Oleksandr 2024-03-02 01:28:54 +02:00
parent 982be84446
commit e93928a70b

View file

@ -54,24 +54,24 @@ require("gopher").setup {
```
>[!NOTE]
>
> <details>
> <summary>
> For named tests to work you have to install gotests from develop branch. Next code snippets could be placed into the build step in the Lazy plugin declaration
> </summary>
>
> ```lua
> -- using mason-tool-installer
> require("mason-tool-installer").setup {
> ensure_installed = {
> { "gotests", version = "develop" },
> }
> }
>
> -- using `vim.fn.jobstart`
> vim.fn.jobstart("go install github.com/cweill/gotests/...@develop")
> ```
> </details>
<details>
<summary>
For named tests to work you have to install gotests from develop branch. Next code snippets could be placed into the build step in the Lazy plugin declaration
</summary>
```lua
-- using mason-tool-installer
require("mason-tool-installer").setup {
ensure_installed = {
{ "gotests", version = "develop" },
}
}
-- using `vim.fn.jobstart`
vim.fn.jobstart("go install github.com/cweill/gotests/...@develop")
```
</details>
## Features