Under construction
- copy the test/test-folder to any location
- open the copy of the test-folder as your VS Code project
- ensure launch.json is generated on F5 or 'Open launch.json' gear
- ensure your launch config is configured properly
- start someScript.js with stopOnEntry true
- after the debugger halts set some breakpoints (one breakpoint might be after an assignment (i.e. line 26), a function-call an somewhere else)
- press continue and check if the Debugger stops at the next breakpoint
- when the debugger stops at line 26, check if the information about the Variable is correct
- change a, Step Over and check if the output on the server console is correct
- check if Pause, pauses the execution
- check if Step Over continues to next line of the code
- check if Step Into stops at the next executed expression
- check if Step Out executes the remaining lines of a function.