-
git clone https://github.com/hackages/masterclass.javascript.git -
npm installoryarn -
npm testoryarn test
To run your tests again each time you make a modification, you can use the watch mode:
yarn/npm test --watchYou can also watch a specific file:
yarn/npm test --watch FILE_NAMEThe tests will run inside your terminal.
Inside the __tests__ folder, there are tests that cover JavaScript concepts. The goal is to fix pass the test by assigning the right value to __.
Make sure to understand why each test case pass!
_ Happy Hacking!_