**given:** access token: xxx.xxx.xxx for user { "id": 1 } **when:** curl -H "Authorization: Bearer xxx.xxx.xxx" -H "Content-Type: application/json" -d '{"text": "some text"}' http://localhost:3000/posts **expect:** { "id": 1, "text": "some text", **"userId": 1**} **actual:** { "id": 1, "text": "some text" }