@@ -422,12 +422,22 @@ node --test
422
422
423
423
By default, Node.js will run all files matching these patterns:
424
424
425
- * ` **/*.test.?(c|m)js `
426
- * ` **/*-test.?(c|m)js `
427
- * ` **/*_test.?(c|m)js `
428
- * ` **/test-*.?(c|m)js `
429
- * ` **/test.?(c|m)js `
430
- * ` **/test/**/*.?(c|m)js `
425
+ * ` **/*.test.{cjs,mjs,js} `
426
+ * ` **/*-test.{cjs,mjs,js} `
427
+ * ` **/*_test.{cjs,mjs,js} `
428
+ * ` **/test-*.{cjs,mjs,js} `
429
+ * ` **/test.{cjs,mjs,js} `
430
+ * ` **/test/**/*.{cjs,mjs,js} `
431
+
432
+ When [ ` --experimental-strip-types ` ] [ ] is supplied, the following
433
+ additional patterns are matched:
434
+
435
+ * ` **/*.test.{cts,mts,ts} `
436
+ * ` **/*-test.{cts,mts,ts} `
437
+ * ` **/*_test.{cts,mts,ts} `
438
+ * ` **/test-*.{cts,mts,ts} `
439
+ * ` **/test.{cts,mts,ts} `
440
+ * ` **/test/**/*.{cts,mts,ts} `
431
441
432
442
Alternatively, one or more glob patterns can be provided as the
433
443
final argument(s) to the Node.js command, as shown below.
@@ -3558,6 +3568,7 @@ Can be used to abort test subtasks when the test has been aborted.
3558
3568
3559
3569
[ TAP ] : https://testanything.org/
3560
3570
[ TTY ] : tty.md
3571
+ [ `--experimental-strip-types` ] : cli.md#--experimental-strip-types
3561
3572
[ `--experimental-test-coverage` ] : cli.md#--experimental-test-coverage
3562
3573
[ `--experimental-test-module-mocks` ] : cli.md#--experimental-test-module-mocks
3563
3574
[ `--experimental-test-snapshots` ] : cli.md#--experimental-test-snapshots
0 commit comments