chore: configure kcov for test coverage

This commit is contained in:
Brett Broadhurst 2026-03-18 03:57:02 -06:00
parent 517eae1481
commit d4546d58be
Failed to generate hash of commit
9 changed files with 20 additions and 2 deletions

View file

@ -1,6 +1,6 @@
const std = @import("std");
const fatal = std.process.fatal;
const ink = @import("root.zig");
const ink = @import("../root.zig");
const Options = struct {
input_reader: *std.Io.Reader,

View file

@ -6,5 +6,5 @@ test {
_ = tokenizer;
_ = Ast;
_ = Story;
_ = @import("runtime_tests.zig");
_ = @import("Story/runtime_tests.zig");
}