bcf82d7a›post and list a message›messages stay in post orderpassed70 mshttp://web:3000/messages — 201 (59 ms) 2✓http://web:3000/messages — 200 (1 ms) 3✓httpPOST http://web:3000/messages — 201 (59 ms)
Request
{
"text": "second message"
}Response
{
"ok": true,
"count": 2
}status= 201actual=201body.count= 2actual=2httpGET http://web:3000/messages — 200 (1 ms)
Request
Response
{
"messages": [
{
"text": "hello from the test suite",
"at": "2026-05-22T09:03:21.060Z"
},
{
"text": "second message",
"at": "2026-05-22T09:03:21.776Z"
}
]
}body.messages.length= 2actual=2body.messages.0.text= "hello from the test suite"actual="hello from the test suite"body.messages.1.text= "second message"actual="second message"