Skip to content

Commit 95c658f

Browse files
fix: add SSE polling scenario to pending list
The server-sse-polling scenario requires a server with SEP-1699 support to return SUCCESS. Since the mock server in tests doesn't support SSE polling, the scenario returns INFO status. Move it to the pending list to exclude from active test suite while keeping it available for explicit testing.
1 parent 25ddecf commit 95c658f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/scenarios/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ import { authScenariosList } from './client/auth/index.js';
5252
// Pending client scenarios (not yet fully tested/implemented)
5353
const pendingClientScenariosList: ClientScenario[] = [
5454
// Elicitation scenarios (SEP-1330)
55-
new ElicitationEnumsScenario()
55+
new ElicitationEnumsScenario(),
56+
// SSE Polling scenarios (SEP-1699) - requires server with SSE polling support
57+
new ServerSSEPollingScenario()
5658
];
5759

5860
// All client scenarios

0 commit comments

Comments
 (0)