From 6a0c1d053ed5d2090d6b039ccf227aa83d4cb00f Mon Sep 17 00:00:00 2001 From: Colin Ihrig Date: Wed, 8 Mar 2023 16:49:43 -0500 Subject: [PATCH] doc: add missing test runner flags to man page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --test-reporter and --test-reporter-destination were previously missing from the man page. PR-URL: https://github.com/nodejs/node/pull/46982 Reviewed-By: Tobias Nießen Reviewed-By: Moshe Atlow Reviewed-By: Luigi Pinca Reviewed-By: Yagiz Nizipli --- doc/node.1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/node.1 b/doc/node.1 index 4ed53b62bb977c..a0e5ee7691fd1a 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -398,6 +398,12 @@ Starts the Node.js command line test runner. A regular expression that configures the test runner to only execute tests whose name matches the provided pattern. . +.It Fl -test-reporter +A test reporter to use when running tests. +. +.It Fl -test-reporter-destination +The destination for the corresponding test reporter. +. .It Fl -test-only Configures the test runner to only execute top level tests that have the `only` option set.