Created
April 19, 2020 19:46
-
-
Save rafaelaazevedo/f8f62e3ca8df9b7d61544ec39cfa5fec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bad practice | |
const EXPECTED_BODY = { | |
name: fake.name, | |
surname: fake.surname, | |
createdDate: Date.now(), | |
country: fake.country() | |
} | |
// Good practice | |
const EXPECTED_BODY = { | |
name: "Foor", | |
surname: "bar", | |
createdDate: "2020-04-21", | |
country: "UK" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment