Skip to content

docs: recipe to debug with DevTools #1115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/recipes/debugging-with-chrome-devtools.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Debugging Tests with Chrome WebTools

Use [inspect-process](https://www.npmjs.com/package/inspect-process) to easily launch a debugging session with Chrome DevTools.

```console
$ npm -g install inspect-process
```

```console
$ inspect node_modules/ava/profile.js some/test/file.js
```
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1024,6 +1024,7 @@ It's the [Andromeda galaxy](https://simple.wikipedia.org/wiki/Andromeda_galaxy).
- [Testing React components](docs/recipes/react.md)
- [JSPM and SystemJS](docs/recipes/jspm-systemjs.md)
- [Debugging tests with WebStorm](docs/recipes/debugging-with-webstorm.md)
- [Debugging tests with Chrome DevTools](docs/recipes/debugging-with-chrome-devtools.md)

## Support

Expand Down