mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-01 08:34:07 +00:00
* feat: ws multi message * fix * fix * fix * improve: UX * improve: new message ui * fix * fix * fix * fix * fix * fix: rename message title * chore: cleanup * change: add message color * fix(websocket): correct cursor and truncate long message names --------- Co-authored-by: Sid <siddharth@usebruno.com>
30 lines
306 B
Plaintext
30 lines
306 B
Plaintext
meta {
|
|
name: ws-multi-msg
|
|
type: ws
|
|
seq: 1
|
|
}
|
|
|
|
ws {
|
|
url: ws://localhost:8081/ws/echo
|
|
body: ws
|
|
auth: inherit
|
|
}
|
|
|
|
body:ws {
|
|
name: message 1
|
|
type: json
|
|
content: '''
|
|
{
|
|
"action": "subscribe"
|
|
}
|
|
'''
|
|
}
|
|
|
|
body:ws {
|
|
name: message 2
|
|
type: text
|
|
content: '''
|
|
hello world
|
|
'''
|
|
}
|