I have a test \'works with nested children\' within the file fix-order-test.js.
Running the below runs all the tests in the file.
jest fix-order-test
With the latest Jest version, you can use one of the following to only run one test, and the same for a test suite.
it.only('test 1', () => {}) test.only('test 1', () => {}) fit('test 1', () => {})
jest 'test 1' may work too if the test name is unique.
jest 'test 1'