Remove helmet test instructions (#39613)

This commit is contained in:
Nicholas Carrigan
2020-09-22 12:42:25 -07:00
committed by GitHub
parent dd7fba4558
commit 3969f651b8
3 changed files with 0 additions and 10 deletions

View File

@ -22,8 +22,6 @@ Start this project on Repl.it using <a href="https://repl.it/github/freeCodeCamp
```yml
tests:
- text: Prevent cross site scripting (XSS) attacks.
testString: ''
- text: I can POST /api/issues/{projectname} with form data containing required issue_title, issue_text, created_by, and optional assigned_to and status_text.
testString: ''
- text: The object saved (and returned) will include all of those fields (blank for optional no input) and also include created_on(date/time), updated_on(date/time), open(boolean, true for open, false for closed), and _id.

View File

@ -22,10 +22,6 @@ Start this project on Repl.it using <a href="https://repl.it/github/freeCodeCamp
```yml
tests:
- text: I will prevent the client from trying to guess(sniff) the MIME type.
testString: ''
- text: I will prevent cross-site scripting (XSS) attacks.
testString: ''
- text: 'I can GET /api/convert with a single parameter containing an accepted number and unit and have it converted. (Hint: Split the input by looking for the index of the first character which will mark the start of the unit)'
testString: ''
- text: I can convert <code>'gal'</code> to <code>'L'</code> and vice versa. (1 gal to 3.78541 L)

View File

@ -22,10 +22,6 @@ Start this project on Repl.it using <a href="https://repl.it/github/freeCodeCamp
```yml
tests:
- text: Nothing from my website will be cached in my client.
testString: ''
- text: The headers will say that the site is powered by 'PHP 4.2.0' even though it isn't (as a security measure).
testString: ''
- text: I can post a title to /api/books to add a book and returned will be the object with the title and a unique _id.
testString: ''
- text: I can get /api/books to retrieve an array of all books containing title, _id, and commentcount.