Closed ziontee113 closed 5 months ago
This was already implemented in #4, but regressed in a recent commit. I'll try to debug and fix this is up later today.
Should be good now, let me know if something does not work as expected
Thank you very much. Worked for me! I'll let you know if something come up :+1:
Is your feature request related to a problem? Please describe. Let's say I have a module declared in
build.zig
file:And to use that
treez
module, I'd have to do something like:In the main file, I can use
@import("treez")
how.However, the tests that gets ran by
neotest-zig
will run into compile time error, basically not knowing about "treez" module.Describe the solution you'd like Maybe instead of "running a file / individual test",
neotest-zig
can parse the output results fromzig build test
orzig build test2
.