Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

90 lines
2.7 KiB
JSON

[
{
"id": "T001",
"description": "DB-backed integration: migrated-schema search returns chats matched by title and by message body, deduplicates to one row per chat, preserves latest `preview_text`, and orders results by relevance then recency.",
"implemented": true,
"featureIds": [
"F001",
"F002",
"F003",
"F004",
"F005",
"F006",
"F007",
"F008",
"F009"
],
"testType": "integration",
"testFile": "server/src/test/integration/chatHistorySearch.integration.test.ts"
},
{
"id": "T002",
"description": "DB-backed guard integration: search excludes another user's matching chat and returns no rows for a non-matching query.",
"implemented": true,
"featureIds": [
"F005",
"F006",
"F009"
],
"testType": "integration",
"testFile": "server/src/test/integration/chatHistorySearch.integration.test.ts"
},
{
"id": "T003",
"description": "Unit: the history sidebar keeps showing recent chats for an empty query and switches to debounced search results once the query reaches 2 characters.",
"implemented": true,
"featureIds": [
"F011",
"F012",
"F013"
],
"testType": "unit",
"testFile": "server/src/test/unit/RightSidebar.historySearch.test.tsx"
},
{
"id": "T004",
"description": "Unit: a 1-character query shows the query-too-short helper without calling search, and clearing the query restores the recent-chat dataset.",
"implemented": true,
"featureIds": [
"F014",
"F017",
"F019"
],
"testType": "unit",
"testFile": "server/src/test/unit/RightSidebar.historySearch.test.tsx"
},
{
"id": "T005",
"description": "Unit: search-mode no-results renders correctly and clicking a matching search result loads the persisted chat through `getChatMessagesAction`.",
"implemented": true,
"featureIds": [
"F015",
"F016",
"F017"
],
"testType": "unit",
"testFile": "server/src/test/unit/RightSidebar.historySearch.test.tsx"
},
{
"id": "T006",
"description": "Unit: rename and delete actions rerun the active search query and keep the sidebar in search mode after the mutation completes.",
"implemented": true,
"featureIds": [
"F015",
"F018"
],
"testType": "unit",
"testFile": "server/src/test/unit/RightSidebar.historySearch.test.tsx"
},
{
"id": "T007",
"description": "Unit: `searchCurrentUserChatsAction` fails closed when chat persistence is unavailable or when the search columns are missing during rollout.",
"implemented": true,
"featureIds": [
"F010"
],
"testType": "unit",
"testFile": "server/src/test/unit/chatActions.searchCurrentUserChatsAction.test.ts"
}
]