diff --git a/README.md b/README.md index f140d18..57b8098 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ This will create the database, run the migrations, and run the seeds for you. ### Migrations Any time you want make changes to your database schema you will need to generate a migration file ```bash -yarn db:migration:generate AddContextToRoles # replace this name with a name that describes your migration +yarn db:migration:create AddContextToRoles # replace this name with a name that describes your migration ``` Open that migration file and make the changes. Then, when you are ready ```bash @@ -125,20 +125,7 @@ To start the client run ```bash $ yarn client:watch ``` - -## Test -**WORK IN PROGRESS** - -```bash -# unit tests -$ yarn test - -# e2e tests -$ yarn test:e2e - -# test coverage -$ yarn test:cov -``` +YOU NEED TO RUN EACH OF THESE COMMANDS IN A SEPARATE TERMINAL TAB / WINDOW ## Setup Heroku We will deploy all our projects to Heroku. Heroku is a cloud platform that is easy and free to use. You will only need to run these step once for each computer you are working on this semester.