Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 899ea58

Browse files
committed
Fix unit test
1 parent 05513bd commit 899ea58

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

packages/jumpstarter-cli/jumpstarter_cli/cli_test.py

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@
88
async def test_cli():
99
runner = CliRunner()
1010
result = await runner.invoke(jmp, [])
11-
assert "admin" in result.output
12-
assert "client" in result.output
13-
assert "exporter" in result.output
14-
assert "version" in result.output
11+
for subcommand in [
12+
"config",
13+
"create",
14+
"delete",
15+
"driver",
16+
"get",
17+
"login",
18+
"run",
19+
"shell",
20+
"update",
21+
"version",
22+
]:
23+
assert subcommand in result.output
1524

1625

1726
@pytest.fixture

0 commit comments

Comments
 (0)