5-MuhSkuhTeers / StudyApp

Web app that keeps track of school tasks, helps allocate time for studying and helps to create study habits, sends reminders on due dates and when to work on assignments/study.
0 stars 0 forks source link

Link both "Add Class" and "Add Assignment" forms to the database #46

Closed alejandraLuGa closed 2 years ago

alejandraLuGa commented 2 years ago

Task Tests

Test 1

  1. Already be registered and have an account on the study app
  2. Go to https://study-app-442.herokuapp.com/login
  3. Log In with your username and password. This should take you to the home screen.
  4. Click on the "Add Class" button.
  5. Fill out the fields with CSE442 for the class name, 3:00 pm - 3:50 for the class time, Hochstetter Hall for location and click add class.
  6. Check in database that the class was added correctly.
    • Connect to local Postgres database
    • Run the queries: SELECT FROM users; SELECT FROM courses; -Check to make sure that the user data is present

Test 2

  1. Already be registered and have an account on the study app
  2. Go to https://study-app-442.herokuapp.com/login
  3. Log In with your username and password. This should take you to the home screen.
  4. Click on the "Add Task" button.
  5. Fill out the fields with HW 1 for the task name, the due date as November 18, 2021, class as CSE442 and add a notification. Click add Task.
  6. Check in database that the class was added correctly.
    • Connect to local Postgres database
    • Run the queries: SELECT FROM users; SELECT FROM assignments; -Check to make sure that the user data is present