feat: wildcard match aliases (#2234)

This commit is contained in:
Valentin Maerten
2026-01-18 19:05:29 +01:00
committed by GitHub
parent b53e5da41a
commit 618cd8956f
5 changed files with 88 additions and 51 deletions

View File

@@ -2612,6 +2612,11 @@ func TestWildcard(t *testing.T) {
call: "start-foo",
expectedOutput: "Starting foo\n",
},
{
name: "alias",
call: "s-foo",
expectedOutput: "Starting foo\n",
},
{
name: "matches exactly",
call: "matches-exactly-*",