diff options
author | Simon Knox <simon@gitlab.com> | 2019-04-03 12:50:30 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2019-04-03 12:50:30 +0000 |
commit | f54e4eb10f2b8171b9417e6533af99e80098d865 (patch) | |
tree | 0131ca154681c2450c13f546d9621843c09e8b24 | |
parent | bc696947fdf0423595cbbcf83b6dc94fb2d2290c (diff) | |
download | gitlab-ce-f54e4eb10f2b8171b9417e6533af99e80098d865.tar.gz |
Add docs for debugging Jest tests
-rw-r--r-- | doc/development/testing_guide/frontend_testing.md | 4 | ||||
-rw-r--r-- | package.json | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/development/testing_guide/frontend_testing.md b/doc/development/testing_guide/frontend_testing.md index 71c9637e72c..f58a8dcbcdc 100644 --- a/doc/development/testing_guide/frontend_testing.md +++ b/doc/development/testing_guide/frontend_testing.md @@ -26,6 +26,10 @@ It is not yet a requirement to use Jest. You can view the [epic](https://gitlab.com/groups/gitlab-org/-/epics/873) of issues we need to solve before being able to use Jest for all our needs. +### Debugging Jest tests + +Running `yarn jest-debug` will run Jest in debug mode, allowing you to debug/inspect as described in the [Jest docs](https://jestjs.io/docs/en/troubleshooting#tests-are-failing-and-you-don-t-know-why). + ### Timeout error The default timeout for Jest is set in diff --git a/package.json b/package.json index 934a30df261..ceb36a92cc8 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "eslint-fix": "eslint --max-warnings 0 --report-unused-disable-directives --ext .js,.vue --fix .", "eslint-report": "eslint --max-warnings 0 --ext .js,.vue --format html --output-file ./eslint-report.html --no-inline-config .", "jest": "BABEL_ENV=jest jest", + "jest-debug": "BABEL_ENV=jest node --inspect-brk node_modules/.bin/jest --runInBand", "jsdoc": "jsdoc -c config/jsdocs.config.js", "karma": "BABEL_ENV=${BABEL_ENV:=karma} karma start --single-run true config/karma.config.js", "karma-coverage": "BABEL_ENV=coverage karma start --single-run true config/karma.config.js", |