@@ -744,25 +744,26 @@ changes:
744
744
** Default:** ` false ` .
745
745
* ` files ` : {Array} An array containing the list of files to run.
746
746
** Default** matching files from [ test runner execution model] [ ] .
747
- * ` setup ` {Function} A function that accepts the ` TestsStream ` instance
748
- and can be used to setup listeners before any tests are run.
749
- ** Default:** ` undefined ` .
750
- * ` signal ` {AbortSignal} Allows aborting an in-progress test execution.
751
- * ` timeout ` {number} A number of milliseconds the test execution will
752
- fail after.
753
- If unspecified, subtests inherit this value from their parent.
754
- ** Default:** ` Infinity ` .
755
747
* ` inspectPort ` {number|Function} Sets inspector port of test child process.
756
748
This can be a number, or a function that takes no arguments and returns a
757
749
number. If a nullish value is provided, each process gets its own port,
758
750
incremented from the primary's ` process.debugPort ` .
759
751
** Default:** ` undefined ` .
752
+ * ` setup ` {Function} A function that accepts the ` TestsStream ` instance
753
+ and can be used to setup listeners before any tests are run.
754
+ ** Default:** ` undefined ` .
755
+ * ` signal ` {AbortSignal} Allows aborting an in-progress test execution.
760
756
* ` testNamePatterns ` {string|RegExp|Array} A String, RegExp or a RegExp Array,
761
757
that can be used to only run tests whose name matches the provided pattern.
762
758
Test name patterns are interpreted as JavaScript regular expressions.
763
759
For each test that is executed, any corresponding test hooks, such as
764
760
` beforeEach() ` , are also run.
765
761
** Default:** ` undefined ` .
762
+ * ` timeout ` {number} A number of milliseconds the test execution will
763
+ fail after.
764
+ If unspecified, subtests inherit this value from their parent.
765
+ ** Default:** ` Infinity ` .
766
+ * ` watch ` {boolean} Whether to run in watch mode or not. ** Default:** ` false ` .
766
767
* Returns: {TestsStream}
767
768
768
769
``` mjs
0 commit comments