feat(pi): add first-class Coding Agent support

This commit is contained in:
SaladDay
2026-08-03 09:21:23 +00:00
parent ac764b4818
commit 9d71e355da
159 changed files with 39663 additions and 632 deletions
@@ -112,4 +112,21 @@ describe("ImportExportSection Component", () => {
expect(screen.getByText("settings.importFailed")).toBeInTheDocument();
expect(screen.getByText("Parse failed")).toBeInTheDocument();
});
it("shows the Pi portability boundary and the concrete partial-sync failure", () => {
render(
<ImportExportSection
{...baseProps}
status="partial-success"
errorMessage="unclaimed native key 'occupied' already exists"
/>,
);
expect(
screen.getByText("settings.piImportExportBoundary"),
).toBeInTheDocument();
expect(
screen.getByText("unclaimed native key 'occupied' already exists"),
).toBeInTheDocument();
});
});