@@ -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.
@@ -3568,6 +3578,7 @@ added:
3568
3578
Can be used to abort test subtasks when the test has been aborted.
3569
3579
3570
3580
[ TAP ] : https://testanything.org/
3581
+ [ `--experimental-strip-types` ] : cli.md#--experimental-strip-types
3571
3582
[ `--experimental-test-coverage` ] : cli.md#--experimental-test-coverage
3572
3583
[ `--experimental-test-module-mocks` ] : cli.md#--experimental-test-module-mocks
3573
3584
[ `--experimental-test-snapshots` ] : cli.md#--experimental-test-snapshots
0 commit comments