Commit f600ddaa authored by Dan Abramov's avatar Dan Abramov Committed by GitHub
Browse files

Explain focusing and excluding tests

parent 46cf3fc4
No related merge requests found
Showing with 6 additions and 0 deletions
+6 -0
...@@ -32,6 +32,7 @@ You can find the most recent version of this guide [here](https://github.com/fac ...@@ -32,6 +32,7 @@ You can find the most recent version of this guide [here](https://github.com/fac
- [Writing Tests](#writing-tests) - [Writing Tests](#writing-tests)
- [Testing Components](#testing-components) - [Testing Components](#testing-components)
- [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries) - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries)
- [Focusing and Excluding Tests](#focusing-and-excluding-tests)
- [Coverage Reporting](#coverage-reporting) - [Coverage Reporting](#coverage-reporting)
- [Continuous Integration](#continuous-integration) - [Continuous Integration](#continuous-integration)
- [Disabling jsdom](#disabling-jsdom) - [Disabling jsdom](#disabling-jsdom)
...@@ -670,6 +671,11 @@ import { expect } from 'chai'; ...@@ -670,6 +671,11 @@ import { expect } from 'chai';
and then use them in your tests like you normally do. and then use them in your tests like you normally do.
### Focusing and Excluding Tests
You can replace `it()` with `xit()` to temporarily exclude a test from being executed.
Similarly, `fit()` lets you focus on a specific test without running any other tests.
### Coverage Reporting ### Coverage Reporting
Jest has an integrated coverage reporter that works well with ES6 and requires no configuration. Jest has an integrated coverage reporter that works well with ES6 and requires no configuration.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment