project: QR conference connector - Adding tests

Hard Prerequisites
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content.
  • REACT-NATIVE: QR conference connector - Proof of concept
  • REACT-NATIVE: React Native testing with Jest
  • REACT-NATIVE: CS50's Mobile App Development with React Native - Testing
  • REACT-NATIVE: QR conference connector - Contact list
  • Instructions

    As you know,testing is always a good idea!

    Please add jest based unit tests to all your components

    In this project we would like to see that you are making good use of snapshot testing.

    Please put your test code with the component under test. For example, if you had a single button component you might do this:

    src/
    ├─ components/
    │  ├─ button.js
    │  ├─ button.style.js
    │  └─ button.test.js
    

    In other words, your tests should be co-located with the code under test.


    RAW CONTENT URL