Skip to content

Commit a45de51

Browse files
committed
04/03: remove tic-tac-toe
1 parent f72aff9 commit a45de51

File tree

3 files changed

+1
-72
lines changed

3 files changed

+1
-72
lines changed

Diff for: exercises/04.debugging/03.problem.breakpoints/README.mdx

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ That isn't ideal. You can add a breakpoint through your IDE instead:
1111

1212
> 🦉 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.
1313
14-
👨‍💼 In this exercise, I have a few tasks for you:
15-
16-
1. Replace the `debugger` statements in the <InlineFile file="./src/tic-tac-toe-browser.test.tsx">`./src/tic-tac-toe-browser.test.tsx`</InlineFile> with breakpoints set in your IDE. Run the tests in debug mode to verify that breakpoints actually stop the test run where you want them to.
17-
1. Complete the test case in <InlineFile file="./src/main-menu.browser.test.tsx">`./src/main-menu.browser.test.tsx`</InlineFile>. 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.
14+
👨‍💼 In this exercise, you've got another bug to tackle. Complete the test case in <InlineFile file="./src/main-menu.browser.test.tsx">`./src/main-menu.browser.test.tsx`</InlineFile>. 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.

Diff for: exercises/04.debugging/03.problem.breakpoints/src/tic-tac-toe.browser.test.tsx

-24
This file was deleted.

Diff for: exercises/04.debugging/03.problem.breakpoints/src/tic-tac-toe.tsx

-44
This file was deleted.

0 commit comments

Comments
 (0)