/Practice-JS

Primary LanguageJavaScript

Practice-JS

This repo includes some tests for the projects we have done throughout the CS section.

Steps to Run:

  1. Run npm i to install dependencies
  2. Run npm run test to watch jest test suites

Additional Run Options

  • Run npm run test <test directory> to watch a specific test suite ie: npm run test Algorithms to watch only the tests inside the Algorithms directory
  • You can run npm run test with the --verbose option to see more test output
  • Run npx run <path_to_JS_file> to run individual JavaScript files, ie: npx run Algorithms/anagrams/index.js to run the index file in the anagrams directory