mswjs/msw

Support custom WebSocket clients

Open

#2,435 创建于 2025年2月20日

在 GitHub 查看
 (4 评论) (4 反应) (0 负责人)TypeScript (13,302 star) (422 fork)batch import
featurehelp wantedneeds:discussion

描述

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.

贡献者指南