This app allows users to simulate a flash card memory game through the command line - a percentage correct will be returned to the user at the end of 30 cards.
Node.js & npm are required to run this app.**
(optional) Fork this project to your own Github account.
Clone the repository to your local machine.
cd
into the project folder.
Use the npm install
command to install the project dependencies.
Use the node index.js
command to run the console application.
This project was completed duringour 7th week of Turing's Front End Development program. Our focus was to learn how to navigate a codebase with pre existing code, as well as write our first set of accompanying tests. With TDD being a new concept for me, this project took around 25 hours to complete.
This project was completed by Robert Phillips.
Write modular, reusable code that follows SRP (Single Responsibility Principle). Implement a robust testing suite using TDD & the Chai Assertion Library.
This app has complete test-coverage for the JS game logic functions. First time writing an entirely ES6 based JS application. Handled my project through TDD for the first time.