Skip to content

Commit

Permalink
feat(pack): remove test plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ALameLlama committed Jul 18, 2024
1 parent a1a64b9 commit 4716974
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions lua/astrocommunity/pack/laravel/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,31 +59,4 @@ return {
},
ft = { "blade", "php" },
},
{
"vim-test/vim-test",
cmd = { "TestNearest", "TestFile", "TestLast", "TestClass", "TestSuite", "TestVist" },
dependencies = {
{
"AstroNvim/astrocore",
opts = function(_, opts)
local maps = opts.mappings
local prefix = "<Leader>Lt"
maps.n[prefix] = { desc = require("astroui").get_icon("Testing", 1, true) .. "Testing" }

maps.n[prefix .. "n"] = { ":TestNearest<CR>", desc = "Test Nearest" }
maps.n[prefix .. "f"] = { ":TestFile<CR>", desc = "Test File" }
maps.n[prefix .. "l"] = { ":TestLast<CR>", desc = "Test Last" }
maps.n[prefix .. "c"] = { ":TestClass<CR>", desc = "Test Class" }
maps.n[prefix .. "s"] = { ":TestSuite<CR>", desc = "Test Suite" }
maps.n[prefix .. "v"] = { ":TestVisit<CR>", desc = "Test Visit" }

-- Set the strategy to open results in a vertical split
vim.g["test#strategy"] = "neovim"
vim.g["test#neovim#term_position"] = "vert"
end,
},
{ "AstroNvim/astroui", opts = { icons = { Testing = "󰙨" } } },
},
event = { "VeryLazy" },
},
}

0 comments on commit 4716974

Please sign in to comment.