mod fixture;
#[test]
fn test_status() {
let env = fixture::Environment::default_package();
let res = env.run_tytanic(["status"]);
insta::assert_snapshot!(res.output(), @r"
--- CODE: 0
--- STDOUT:
--- STDERR:
Project ┌ template:0.1.0
Vcs ├ none
Template ├ tests/template.typ
Tests ├ 4 persistent
├ 3 ephemeral
└ 2 compile-only
--- END
");
}