Information Security Projects - Anonymous Message Board

Tell us what’s happening:
Describe your issue in detail here.

Your project link(s)
solution: https://boilerplate-project-messageboard.mariamawitashen.repl.co

I have been stuck on this project for a while. The ’ DELETE request to /api/replies/{board}’ test is failing. My tests are passing though. Can anyone tell me what I am doing wrong? Thanks in advance.

solution: boilerplate-project-messageboard - Replit

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:108.0) Gecko/20100101 Firefox/108.0

Challenge: Information Security Projects - Anonymous Message Board

Link to the challenge:

Did you mean this to be res.end, or res.send:

res.end("incorrect password");
...
res.end("success");

If functions the way it is, but not sure if .end is not sending the correct content-type perhaps for the tests.

As far as I understand it, the only difference b/n res.end() and res.send is the content-type is text/plain for the first and text/html for the later. I tried them both and the fcc delete test is still not passing.