Breakpoints
Placing a
debugger
statement anywhere in your code or test is not the only way to create a breakpoint. In fact, you might've noticed we have to modify our test to add the debugger
statement!That isn't ideal. You can add a breakpoint through your IDE instead:
- Locate the line of code you want to set a breakpoint at;
- Either click on the red circle on the gutter next to that line or right-click the gutter and select "Add a breakpoint":

🦉 Note that adding a breakpoint on a line will pause the execution before that line runs, not after. If you want to pause after a certian action, put a breakpoint after it in the code.
👨💼 In this exercise, you've got another bug to tackle. Complete the test case in . This is a new component rendering a menu in our app. It looks simple enough but there's something odd about those active links... Once you finish the test, run it in the debug mode and try to see how you can use conditional breakpoints to get to the root cause of the issue.