From 4857a2c5ef989794751a0f66b8545a4a49566286 Mon Sep 17 00:00:00 2001 From: Kc Date: Tue, 28 Jul 2026 13:00:07 +0800 Subject: [PATCH] fix(cli): sync shadcn test asset (#433) --- cli/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py b/cli/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py index 03c8f31..806b6a4 100644 --- a/cli/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py +++ b/cli/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py @@ -173,7 +173,7 @@ class TestShadcnInstaller: # Verify correct command was called mock_run.assert_called_once() call_args = mock_run.call_args[0][0] - assert call_args[:3] == ["npx", "shadcn@latest", "add"] + assert call_args[:3] == ["npx", "shadcn@2.3.0", "add"] assert "button" in call_args assert "card" in call_args