Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 500 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 500 Bytes

JS Playground for Recursion Lesson Exercises

Instructions

  • Clone this repo
  • cd into this repo
  • Run npm install
  • Run npm test to run the tests in the test file.
  • Write your code in the lib/recursion.js file to pass the tests.

To un-skip a test, remove the .skip that follows describe

To run a single test in isolation, run mocha --grep <the string you want to use> and that entire block will run. (ex. mocha --grep ".countdown", mocha --grep "Additional Practice", etc)