Files
Daniel Holmgren 1dd20d3a81 WebSocket Library (#4348)
* create new websocket lib

* switch out ozone impl

* keepalive test

* remove websocket keepalive code from xrpc-server

* add the package in all the spots

* websocket -> ws-client

* missed ref

* fix import in ozone test
2025-11-18 17:34:41 -06:00

9 lines
326 B
JavaScript

/** @type {import('jest').Config} */
module.exports = {
displayName: 'WebSocket Client',
transform: { '^.+\\.(j|t)s$': '@swc/jest' },
transformIgnorePatterns: ['/node_modules/.pnpm/(?!(get-port)@)'],
setupFiles: ['<rootDir>/../../jest.setup.ts'],
moduleNameMapper: { '^(\\.\\.?\\/.+)\\.js$': ['$1.ts', '$1.js'] },
}