Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: integration test for neotest-golang #166

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions tests/integration/neotest_golang_spec.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
local async = require("nio").tests
local neotest = require("neotest")

describe("neotest-golang integration", function()
async.it("runs Go tests and verifies results", function()
-- Initialize neotest and set up neotest-golang
neotest.setup({
adapters = {
require("neotest-golang"),
},
})

-- Run Go tests in the tests/go directory
local results = neotest.run.run({ vim.fn.expand("tests/go") })

-- Verify the results of the Go tests executed through neotest and neotest-golang
for _, result in pairs(results) do
assert.are.equal(result.status, "passed")
end

-- Ensure the exit code is 0 and all tests passed
assert.are.equal(vim.v.shell_error, 0)
end)
end)
Loading