install deps
npm install
run server
npm run start:dev
run curl to make sure endpoint exists (should return 200)
curl -X POST 'http://localhost:3000/api/test' \
-H 'Content-Type: application/json' \
--data-raw '{"v":1}'
run curl with more payload
expected to fail with 413 but fails with 404
{"message":"Cannot POST /api/test","error":"Not Found","statusCode":404}
curl -X POST 'http://localhost:3000/api/test' \
-H 'Content-Type: application/json' \
--data-raw '{"v":1234567890}'