chore: checkpoint Boss app v2.5.11

This commit is contained in:
AI Bot
2026-06-08 12:22:50 +08:00
parent bddbe8b5ba
commit 3b51641d99
78 changed files with 5706 additions and 954 deletions

View File

@@ -26,6 +26,21 @@ test("events route enriches project conversation events with a visible home item
);
});
test("events route coalesces enriched payload building across realtime clients", async () => {
const source = await readSource("../src/app/api/v1/events/route.ts");
assert.match(
source,
/getSharedEventPayload/,
"expected realtime event route to share one enriched payload build across concurrent SSE clients",
);
assert.match(
source,
/sharedEventPayloads/,
"expected realtime event route to keep a short-lived shared payload cache",
);
});
test("MainActivity applies realtime conversation patches without forcing a network refresh", async () => {
const [mainActivity, mapper] = await Promise.all([
readSource("../android/app/src/main/java/com/hyzq/boss/MainActivity.java"),