@@ -55,7 +55,7 @@ process.exit(result ? 0 : 1);
5555 If a pattern doesn't match any files relative to ` test/**/Temporal/ ` , it will
5656 also try to match relative to the current working directory, so that tab
5757 completion works. Example: ` [ 'PlainDateTime/**', 'prototype/with/*.js' ] `
58- * ` expectedFailureFiles?: string[] ` Optional array of text filenames
58+ * ` expectedFailureFiles?: string[] ` - Optional array of text filenames
5959 that each contain a list of test files (relative to the ` test ` subdirectory
6060 of ` test262Dir ` ) that are expected to fail. Lines starting with ` # ` and
6161 blank lines are ignored. Lines from multiple files will be concatenated and
@@ -65,6 +65,12 @@ process.exit(result ? 0 : 1);
6565 built-ins/Temporal/Duration/compare/argument-string-negative-fractional-units.js
6666 built-ins/Temporal/Duration/from/argument-string-negative-fractional-units.js
6767 ```
68+ * ` updateExpectedFailureFiles?: boolean ` - Used in local development to
69+ automatically revise expected-failure files after making code changes that fix
70+ test failures, removing tests that were expected to fail but now pass from the
71+ expected-failure files. This option does not add newly failing tests to the
72+ expected-failure files - this must be done manually. We recommend this option
73+ be set using an optional CLI flag for ease of use.
6874* ` timeoutMsecs?: number|string ` - Optional number of milliseconds to allow
6975 tests to run before they'll be terminated. This ensures that infinite-loop (or
7076 super-long) tests won't prevent others from completing. Default is 2000 msecs
@@ -74,9 +80,3 @@ process.exit(result ? 0 : 1);
7480 a number before evaluation, which makes it easier for callers to pass
7581 environment variables as-is. NaN values will silently be assigned the default
7682 value.
77- * updateExpectedFailureFiles?: boolean Used in local development to
78- automatically revise expected-failure files after making code changes that
79- fix test failures, removing tests that were expected to fail but now pass from
80- the expected-failure files. This option does not add newly failing tests to the
81- expected-failure files - this must be done manually. We recommend this option
82- be set using an optional CLI flag for ease of use.
0 commit comments