All runsRun 2bf79687post and list a messagepassed99 ms
  1. httpPOST http://web:3000/messages — 201 (85 ms) 3✓89 ms
  2. httpGET http://web:3000/messages — 200 (1 ms) 3✓94 ms

httpPOST http://web:3000/messages — 201 (85 ms)

Request

{
  "text": "hello from the test suite"
}

Response

{
  "ok": true,
  "count": 1
}

Assertions

  • status= 201actual=201
  • body.ok= trueactual=true
  • body.count= 1actual=1

httpGET http://web:3000/messages — 200 (1 ms)

Request

Response

{
  "messages": [
    {
      "text": "hello from the test suite",
      "at": "2026-05-22T09:03:21.060Z"
    }
  ]
}

Assertions

  • status= 200actual=200
  • body.messages.length= 1actual=1
  • body.messages.0.text= "hello from the test suite"actual="hello from the test suite"