vow-test
vow-test adds extra assertions for test blocks beyond built-in assert. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-testvpm installQuick start
Section titled “Quick start”import vtest from vow_test
test "eq" { vtest.assert_eq_int(2, 1 + 1);}
fn main(caps: Caps) -> int { return 0;}Run tests
Section titled “Run tests”cd vow-libs/vow-test && vow test tests/test.vow