diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index bca2844..772fc44 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -81,6 +81,10 @@ map("n", "t", function() require("mj.test_runner").test_line() end, { desc = "Run test for current line" }) +map("n", "t", function() + require("mj.test_runner").test_line() +end, { desc = "Run test for current line" }) + map("n", "T", function() require("mj.test_runner").run_test_file() end, { desc = "Run test file" })