Patient Medical Records

  • + 0 comments

    First check the App.test.js file it is not that hard to read and understand. Then you will know why your code is not passing the tests. The most annoying part is the timestamp formatting. It must be in this format to work :

    (timeStamp) => (new Date(timeStamp)).toLocaleDateString('en-US', { 
        month: '2-digit', 
        day: '2-digit', 
        year: 'numeric' 
      });