Перейти к содержимому

WebSocketReplayConfig

Это содержимое пока не доступно на вашем языке.

Defined in: types.ts:49

Replay-time pacing for recorded WebSocket messages.

optional timing?: "burst" | "original"

Defined in: types.ts:58

How recorded server→client messages are paced on replay.

  • 'burst' (default): sent immediately on connect — fastest, fully deterministic, best for CI.
  • 'original': re-paced using the recorded timestamps, so messages arrive with their real inter-message gaps. A test then takes roughly the recording’s wall-clock span.