Function hasTermCheck [src]
Prototype
pub fn hasTermCheck(run: Run) bool
Parameters
run: Run
Source
pub fn hasTermCheck(run: Run) bool {
for (run.stdio.check.items) |check| switch (check) {
.expect_term => return true,
else => continue,
};
return false;
}