diff --git a/devtools/docs/tests/mochitest-devtools.md b/devtools/docs/tests/mochitest-devtools.md index 687432c001ea..e5f44ba1d6e4 100644 --- a/devtools/docs/tests/mochitest-devtools.md +++ b/devtools/docs/tests/mochitest-devtools.md @@ -21,5 +21,16 @@ To run a specific DevTools mochitest: ```bash ./mach mochitest devtools/client/path/to/the/test_you_want_to_run.js ``` -Note that the mochitests *must* have focus while running. +Note that the mochitests *must* have focus while running. The tests run in the browser which looks like someone is magically testing your code by hand. If the browser loses focus, the tests will stop and fail after some time. (Again, sit back and relax) +In case you'd like to run the mochitests without having to care about focus and be able to touch your computer while running: + +```bash +./mach mochitest --headless devtools/client/ +``` + +You can also run just a single test: + +```bash +./mach mochitest --headless devtools/client/path/to/the/test_you_want_to_run.js +```