diff --git a/lua/neotest-golang/lib/cmd.lua b/lua/neotest-golang/lib/cmd.lua index a629bc8..7ab8fd8 100644 --- a/lua/neotest-golang/lib/cmd.lua +++ b/lua/neotest-golang/lib/cmd.lua @@ -1,5 +1,6 @@ --- Helper functions building the command to execute. +---@type nio local async = require("neotest.async") local logger = require("neotest-golang.logging") diff --git a/lua/neotest-golang/process.lua b/lua/neotest-golang/process.lua index f4b2d41..8f9596b 100644 --- a/lua/neotest-golang/process.lua +++ b/lua/neotest-golang/process.lua @@ -1,6 +1,7 @@ --- This file is centered around the parsing/processing of test execution output --- and assembling of the final results to hand back over to Neotest. +---@type nio local async = require("neotest.async") local logger = require("neotest-golang.logging")