diff --git a/lua/plugins/extras/test.lua b/lua/plugins/extras/test.lua new file mode 100644 index 0000000..756a597 --- /dev/null +++ b/lua/plugins/extras/test.lua @@ -0,0 +1,18 @@ +return { + { "olimorris/neotest-rspec" }, + { + "nvim-neotest/neotest", + opts = { + adapters = { + "neotest-rspec" + } + }, + dependencies = { + "nvim-treesitter/nvim-treesitter", + "olimorris/neotest-rspec", + }, + -- config = function(_, opts) + -- require("neotest").setup(opts) + -- end + }, +} diff --git a/lua/plugins/test.lua b/lua/plugins/test.lua deleted file mode 100644 index aa8a342..0000000 --- a/lua/plugins/test.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - { "olimorris/neotest-rspec" }, - { - "nvim-neotest/neotest", - opts = { adapters = { "olimorris/neotest-rspec" } }, - }, -}