Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 819 Bytes

File metadata and controls

50 lines (31 loc) · 819 Bytes

Command Shift Debugging Adventure

Debugging practice for node.js.

getting started

Clone this repository:

git clone https://github.com/CommandShiftHQ/debug-adventure.git

Open the repository:

  cd debug-adventure/

Switch to the bugged branch:

  git checkout bugs

Install dependencies:

  npm install

Run tests:

  npm test

Challenge

You will see that most of the tests fail. Your challenge is to find the bugs in the code and correct them so the tests will pass. There are no bugs in the tests.

🔥Hot Tip 1: Start by fixing the errors in the Weapon class 🔥
🔥Hot Tip 2: Next fix the errors in the Character class 🔥

Remember:

  • Always read the error messages!
  • Google any error messages you don't understand.

Good Luck!