Skip to content

Tags: nvim-neotest/neotest

Tags

v5.6.1

Toggle v5.6.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(query): use `nil` to skip optional parameters when calling the it…

…er_matches method (#458)

v5.6.0

Toggle v5.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: use client.supports_method instead of client.server_capabilities (

#451)

v5.5.1

Toggle v5.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs(README): add neotest-bazel (#448)

v5.5.0

Toggle v5.5.0's commit message
chore: styling

v5.4.1

Toggle v5.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(lib/process): read output before waiting for exit (#447)

v5.4.0

Toggle v5.4.0's commit message
feat(run): augment args

Allow users to augment the arguments to all tests being run from a
singular function.

```lua
local nio = require("nio")
neotest.setup({
  run = {
    augment = function(tree, args)
      local name = nio.ui.input({ prompt = "What is your name?" })

      args.env = { USER_NAME = name }

      return args
    end,
  },
})
```

See #431

v5.3.5

Toggle v5.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
refactor(window): replace deprecated usage nvim_buf_set_option (#433)

this is now deprecated in 0.10 and can be replaced with
nvim_set_option_value

per https://neovim.io/doc/user/deprecated.html#deprecated-0.10

Fixes: N/A

Co-authored-by: Cody Mikol <[email protected]>

v5.3.4

Toggle v5.3.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs(readme): fix luarocks badge (#429)

v5.3.3

Toggle v5.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(diagnostic): safer place_sign (#405)

---------

Co-authored-by: Boris Churzin <[email protected]>

v5.3.2

Toggle v5.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: no autocommand file name to substitute for <afile> (#416)

Co-authored-by: Steven Arcangeli <[email protected]>