// running tests
5. You can send a POST request to /api/threads/{board} with form data including text and delete_password. The saved database record will have at least the fields _id, text, created_on(date & time), bumped_on(date & time, starts same as created_on), reported (boolean), delete_password, & replies (array).
At cloud.mongodb.com my collection(‘test’ ->‘threads’) after running the test two objects were added:
_id 6746dcbcf1e8965d738bab57
board “fcc_test”
text “fcc_test_Wed Nov 27 2024 12:47:56 GMT+0400 (Standard Time)”
reported false
delete_password “delete_me”
I don’t think you can complete the POST tests without a GET route the test can use to check the POST was done correctly. Try implementing the GET on the same route path.