fix: build of helix_mode tests

This commit is contained in:
CJ van den Berg 2025-10-08 14:16:09 +02:00
parent a64d7c3afa
commit a5dc6d8a43
3 changed files with 11 additions and 66 deletions

View file

@ -19,6 +19,14 @@ const Widget = @import("Widget.zig");
const MessageFilter = @import("MessageFilter.zig");
const MainView = @import("mainview.zig");
// exports for unittesting
pub const exports = struct {
pub const mode = struct {
pub const helix = @import("mode/helix.zig");
};
pub const editor = @import("editor.zig");
};
const Allocator = std.mem.Allocator;
allocator: Allocator,