gecko-dev/devtools/docs/tests
2019-06-21 07:55:28 +00:00
..
debugging-intermittents.md
mochitest-chrome.md
mochitest-devtools.md Bug 1558755 - Add docs on how to run mochitests in headless mode, r=pbro,nchevobbe 2019-06-21 07:55:28 +00:00
perfherder-compare-link.png
perfherder-compare.png
perfherder-create-gecko-profile.png Bug 1556652 - Document how to create perf profiles on try for DAMP r=nchevobbe 2019-06-04 12:44:57 +00:00
perfherder-damp.png
perfherder-filter-subtests.png
perfherder-subtests.png
performance-tests.md Bug 1556652 - Document how to create perf profiles on try for DAMP r=nchevobbe 2019-06-04 12:44:57 +00:00
README.md
regression-graph.png
regression-popup.png
tips.md Bug 1549375 - Update try syntax for running damp tests in devtools documentation r=Honza 2019-05-13 07:28:16 +00:00
writing-perf-tests.md
writing-tests.md
xpcshell.md

Automated tests

When working on a patch for DevTools, there's almost never a reason not to add a new test. If you are fixing a bug, you probably should write a new test to prevent this bug from occurring again. If you're implementing a new feature, you should write new tests to cover the aspects of this new feature.

Ask yourself:

  • Are there enough tests for my patch?
  • Are they the right types of tests?

We use three suites of tests:

  • xpcshell: Unit-test style of tests. No browser window, only a JavaScript shell. Mostly testing APIs directly.
  • Chrome mochitests: Unit-test style of tests, but with a browser window. Mostly testing APIs that interact with the DOM.
  • DevTools mochitests: Integration style of tests. Fires up a whole browser window with every test and you can test clicking on buttons, etc.

More information about the different types of tests can be found on the automated testing page at MDN.

To run all DevTools tests, regardless of suite type:

./mach test devtools/*

Have a look at the child pages for more specific commands for running only a single suite or single test in a suite.