mswjs/msw

Support custom WebSocket clients

Open

#2435 opened on Feb 20, 2025

View on GitHub
 (4 comments) (4 reactions) (0 assignees)TypeScript (13,302 stars) (422 forks)batch import
featurehelp wantedneeds:discussion

Description

Scope

Improves an existing behavior

Compatibility

  • This is a breaking change

Feature description

More context: #2414

Summary

There are cases when tests transitively rely on the WebSocket class that is specification-compliant but is not distributed globally (e.g. the ws package). It would be nice to handle this situation in MSW somehow so it's either supported or made apparent that it won't be.

I believe we should be able to do something like this:

import { ws } from 'msw'
import { WebSocket } from 'ws'

ws.link(url, {
  WebSocket
})

This approach does however have a few gotchas.

Gotchas

It's sensitive to import order. If your tested code gets imported first, it will grab the unpatched version of the client and there's nothing MSW can do about it. Since WebSocket links are created in test suites, perhaps they aren't the best area to support custom WebSocket clients.

This feature would also imply some sort of input validation so users wouldn't provide arbitrary classes hoping that mocking would just work. The WebSocket client must be WHATWG compliant.

Contributor guide