feat: rename --from-af to --import and /download to /export (#902)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Sarah Wooders
2026-02-11 15:39:48 -08:00
committed by GitHub
parent 77b4746dc2
commit 0c317652fd
5 changed files with 32 additions and 21 deletions

View File

@@ -100,9 +100,9 @@ describe("Startup Flow - Invalid Inputs", () => {
{ timeout: 70000 },
);
test("--from-af with nonexistent file shows error", async () => {
test("--import with nonexistent file shows error", async () => {
const result = await runCli(
["--from-af", "/nonexistent/path/agent.af", "-p", "test"],
["--import", "/nonexistent/path/agent.af", "-p", "test"],
{ expectExit: 1 },
);
expect(result.stderr).toContain("not found");