nss-day-cohort-29 / reactive-nutshell-starrywick

reactive-nutshell-starrywick created by GitHub Classroom
0 stars 0 forks source link

Buttons zc #22

Closed zwcrawford closed 5 years ago

zwcrawford commented 5 years ago

Description: TaskList is working

Type of change

[X ] New feature (non-breaking change which adds functionality)

Testing Instructions for Change Made:

  1. git fetch --all
  2. git checkout branch setup_zc
  3. run json server on port 5002
  4. npm start in reactive-nutshell
  5. Add the data below to database json;
    "tasks": [
    {
      "id": 1,
      "userId": 2,
      "task": "task",
      "dueDate": "2018-01-28",
      "complete": false
    },
    {
      "id": 2,
      "userId": 2,
      "task": "task2",
      "dueDate": "2019-01-28",
      "complete": true
    }
    ]
  6. click on tasks in navbar
  7. verify TaskList is showing on DOM
  8. verify no errors are present and your code is functioning as expected.

Checklist: [X ] My code follows the style guidelines of this project [X ] I have performed a self-review of my own code [X ] My changes generate no new warnings [X ] I have added test instructions that prove my fix is effective or that my feature works