Skip to content

Commit

Permalink
ci: disable socket-io per-message timeout test
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Jan 5, 2024
1 parent aa82e8d commit bf1abea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tests/socket-io-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,8 @@ describe('socket-io', () => {
}
});

test('message timeout disconnects client', async () => {
// Per message timeout is not enabled (we don't want to require clients to explicitly reply to events)
test.skip('message timeout disconnects client', async () => {
const address = apiServer.address;
const socket = io(`http://${address}`, {
reconnection: false,
Expand Down

0 comments on commit bf1abea

Please sign in to comment.