I a library in which the code in it references other parts by doing something like ```zig
const libfoo = @import("root");
pub fn doSomethingWithBar() void {
const bar = libfoo.Bar.init();
bar.doSomething();
}
However, when I try to do run my code in a test like ```
const libfoo = @import("libfoo");
test "Does something" {
libfoo.baz.doSomethingWithBar();
}
It takes the code in the first file as the root for the test runner as in ~/.local/share/zig/lib/compiler/test_runner.zig. How can I change that?
