Skip to content

Commit da71ee1

Browse files
sirtimidclaude
andcommitted
fix(kernel-node-runtime): increase MAX_QUEUE test timeout to 120s
The "rejects new messages when queue reaches MAX_QUEUE limit" test sends 201 messages while disconnected, restarts a kernel, and resolves all promises. In CI this can take >90s. Bump from NETWORK_TIMEOUT*3 (90s) to NETWORK_TIMEOUT*4 (120s) to avoid flaky timeout failures. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c6dfcc1 commit da71ee1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/kernel-node-runtime/test/e2e/remote-comms.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ describe.sequential('Remote Communications E2E', () => {
636636
const newMessage = kunser(newMessageResult);
637637
expect(newMessage).toBe('Sequence 999 received');
638638
},
639-
NETWORK_TIMEOUT * 3,
639+
NETWORK_TIMEOUT * 4,
640640
);
641641
});
642642

0 commit comments

Comments
 (0)