local neotest = require "neotest" local map = require("core.utils").map neotest.setup { adapters = { require "neotest-go", }, icons = { expanded = "", child_prefix = "", child_indent = "", final_child_prefix = "", non_collapsible = "", collapsed = "", passed = "", running = "", failed = "", unknown = "", }, } map("n", "tn", neotest.run.run) map("n", "ts", neotest.summary.toggle) map("n", "tS", neotest.run.stop) map("n", "to", neotest.output.open) map("n", "]t", neotest.jump.next) map("n", "[t", neotest.jump.prev) map("n", "tt", function() neotest.run.run(vim.fn.expand "%") end)