fune/devtools/docs/contributor/tests
2022-06-08 07:47:25 +00:00
..
debugging-intermittents.md Bug 1752319 - [devtools] Fix MDN links in DevTools contributor docs r=jdescottes 2022-01-28 09:02:26 +00:00
mochitest-chrome.md
mochitest-devtools.md
node-tests.md Bug 1773203 - [devtools] Improve failure message and documentation for devtools-bundle job r=nchevobbe 2022-06-08 07:47:25 +00:00
perfherder-compare-link.png
perfherder-compare.png
perfherder-create-gecko-profile.png
perfherder-damp.png
perfherder-filter-subtests.png
perfherder-subtests.png
performance-tests-damp.md Bug 1762837 - [devtols] Update DAMP docs to suggest --suite instead of --activeTests r=nchevobbe 2022-04-19 11:56:45 +00:00
performance-tests-overview.md
README.md Bug 1752319 - [devtools] Fix MDN links in DevTools contributor docs r=jdescottes 2022-01-28 09:02:26 +00:00
regression-graph.png
regression-popup.png
writing-perf-tests-example.md Bug 1762837 - [devtols] Update DAMP docs to suggest --suite instead of --activeTests r=nchevobbe 2022-04-19 11:56:45 +00:00
writing-perf-tests-tips.md
writing-perf-tests.md Bug 1762837 - [devtols] Update DAMP docs to suggest --suite instead of --activeTests r=nchevobbe 2022-04-19 11:56:45 +00:00
writing-tests.md Bug 1752319 - [devtools] Fix MDN links in DevTools contributor docs r=jdescottes 2022-01-28 09:02:26 +00:00
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.

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.