From 4b3940c21b40686fd22bac3cc266fdc9754483fd Mon Sep 17 00:00:00 2001 From: Monica Williams Date: Thu, 30 Nov 2017 11:00:24 -0800 Subject: [PATCH] Adds spec changes to README - clarifies one of the instructions that was misworded - adds punctuation for consistency --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6890379..b5a3135 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Users can: Users CANNOT: - [ ] __10:__ Sign up without a name value - [ ] __10:__ Sign up without an email address value -- [ ] __30:__ Sign up without an email that is already in use. +- [ ] __30:__ Sign up with an email that is already in use. Files to modify: - `src/routes/authentication.js` @@ -93,7 +93,7 @@ Files to modify: ## Testing Testing: -- [ ] __30:__ Write a test for the `signUp` action using Mocha. This test should check that calling the `signUp` function adds a row in the database +- [ ] __30:__ Write a test for the `signUp` action using Mocha. This test should check that calling the `signUp` function adds a row in the database. Files to modify: - `test/actions/signUp.test.js` @@ -104,10 +104,10 @@ Files to modify: Routing: - [ ] __20:__ Navigating to `/users/` loads the profile page. The profile page has a button `Edit` which when clicked, navigates to the edit profile page. - [ ] __20:__ Navigating to `/users//edit` loads the edit profile page. -- [ ] __20:__ Sending a PUT request to `/users/` updates the profile of the user +- [ ] __20:__ Sending a PUT request to `/users/` updates the profile of the user. Users can: -- [ ] __10:__ See their username and email +- [ ] __10:__ See their username and email. - [ ] __30:__ Edit their username and email using AJAX. Updating their profile should NOT require a page refresh. Files to modify: