From 702d983059d9317749741a231abdc35a45267c61 Mon Sep 17 00:00:00 2001 From: davidnth <63354482+davidnth@users.noreply.github.com> Date: Sun, 8 Aug 2021 15:14:12 +1000 Subject: [PATCH] Update README.md Co-authored-by: Tatiana --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dca05a..ee10520 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Each exercise includes 3 files: a markdown file with a description of the task, The first exercise, `helloWorld`, will walk you through the process in-depth. ## Debugging -To debug functions, you can run the tests in the visual code studio debugger terminal (open this by clicking the "Run and Debug" icon on the left or pressing ctrl + shift + D, then clicking JavaScript Debug Terminal). In your code you are able to set breakpoints as you would in the Chrome devtools debugger. You can run `npm test exerciseName.spec.js` to then execute your code up until your breakpoint and step through your code as necessary. +To debug functions, you can run the tests in the Visual Studio Code debugger terminal. You can open this by clicking the "Run and Debug" icon on the left or pressing `ctrl + shift + D`, then clicking JavaScript Debug Terminal. You will be able to set breakpoints as you would in the Chrome DevTools debugger. You can run `npm test exerciseName.spec.js` to then execute your code up until your breakpoint and step through your code as necessary. **NOTE**: To take advantage of the debugger, you **MUST** run the script in the debugger terminal, not the bash or zsh terminal. ## Solutions