Close the WebSocket connection.
import ws from 'k6/ws'; export default function () { const url = 'ws://echo.websocket.org'; const response = ws.connect(url, null, function (socket) { socket.on('open', function () { socket.close(); }); });}