terminal: move tests into main

This commit is contained in:
Mitchell Hashimoto
2022-05-10 14:40:37 -07:00
parent 6589a47352
commit de7d950052
2 changed files with 3 additions and 7 deletions

View File

@@ -1,11 +1,13 @@
pub const Terminal = @import("Terminal.zig");
pub const Parser = @import("Parser.zig");
// Not exported because they're just used for tests.
test {
_ = Parser;
_ = Terminal;
_ = @import("osc.zig");
_ = @import("parse_table.zig");
_ = @import("Parser.zig");
_ = @import("Tabstops.zig");
}