From 25c63a0778f403d0b0d39941922639f91cb20027 Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Fri, 3 Jan 2025 16:28:35 +0100 Subject: [PATCH] chore: add type --- lua/neotest-golang/lib/cmd.lua | 1 + lua/neotest-golang/process.lua | 1 + 2 files changed, 2 insertions(+) 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")