Debugging
It can also include note on how to debug:
Debug with VSCode
To debug with VSCode make sure you run the following in a terminal:
npm run watch
Back in VSCode, open a file, put a breakpoint (F9), then open a .feature file, put the cursor over a Scenario: line and press F5.
If you don't know where to put the breakpoint, you can always put it in the first line of the default export of app.ts.
To encourage folks to contribute, we could add a CONTRIBUTING.md.
There's a nice example here:
https://github.com/thoughtbot/factory_bot_rails/blob/master/CONTRIBUTING.md
Debugging It can also include note on how to debug: