From 8c95f07f186f23ba47750d3f1ec5468a6581c96b Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 26 Jul 2022 13:52:51 +0200 Subject: [PATCH] fix(doc): fix typos in `test.md` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43997 Reviewed-By: Harshitha K P Reviewed-By: Feng Yu Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen (cherry picked from commit f0639eb8bad739b27b7cdefef4fac8e48c889f16) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b63cfe..3867990 100644 --- a/README.md +++ b/README.md @@ -339,7 +339,7 @@ internally. - `only` {boolean} If truthy, and the test context is configured to run `only` tests, then this test will be run. Otherwise, the test is skipped. **Default:** `false`. - * `signal` {AbortSignal} Allows aborting an in-progress test + * `signal` {AbortSignal} Allows aborting an in-progress test. - `skip` {boolean|string} If truthy, the test is skipped. If a string is provided, that string is displayed in the test results as the reason for skipping the test. **Default:** `false`. @@ -506,7 +506,7 @@ execution of the test function. This function does not return a value. - `skip` {boolean|string} If truthy, the test is skipped. If a string is provided, that string is displayed in the test results as the reason for skipping the test. **Default:** `false`. - - `signal` {AbortSignal} Allows aborting an in-progress test + - `signal` {AbortSignal} Allows aborting an in-progress test. - `todo` {boolean|string} If truthy, the test marked as `TODO`. If a string is provided, that string is displayed in the test results as the reason why the test is `TODO`. **Default:** `false`.