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

@@ -104,13 +104,13 @@ describe("Startup Flow - Flag Conflicts", () => {
);
});
test("--conversation conflicts with --from-af", async () => {
test("--conversation conflicts with --import", async () => {
const result = await runCli(
["--conversation", "conv-123", "--from-af", "test.af"],
["--conversation", "conv-123", "--import", "test.af"],
{ expectExit: 1 },
);
expect(result.stderr).toContain(
"--conversation cannot be used with --from-af",
"--conversation cannot be used with --import",
);
});