UNPKG

mock-socket

Version:

Javascript mocking library for websockets and socket.io

30 lines (28 loc) 768 B
/* * https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent */ export const CLOSE_CODES = { CLOSE_NORMAL: 1000, CLOSE_GOING_AWAY: 1001, CLOSE_PROTOCOL_ERROR: 1002, CLOSE_UNSUPPORTED: 1003, CLOSE_NO_STATUS: 1005, CLOSE_ABNORMAL: 1006, UNSUPPORTED_DATA: 1007, POLICY_VIOLATION: 1008, CLOSE_TOO_LARGE: 1009, MISSING_EXTENSION: 1010, INTERNAL_ERROR: 1011, SERVICE_RESTART: 1012, TRY_AGAIN_LATER: 1013, TLS_HANDSHAKE: 1015 }; export const ERROR_PREFIX = { CONSTRUCTOR_ERROR: "Failed to construct 'WebSocket':", CLOSE_ERROR: "Failed to execute 'close' on 'WebSocket':", EVENT: { CONSTRUCT: "Failed to construct 'Event':", MESSAGE: "Failed to construct 'MessageEvent':", CLOSE: "Failed to construct 'CloseEvent':" } };