From b8bc3be6155c7546b619869948d3b0506eeaca36 Mon Sep 17 00:00:00 2001 From: Moshe Atlow Date: Tue, 26 Jul 2022 07:43:56 +0300 Subject: [PATCH] fix(doc): add missing test runner option PR-URL: https://github.com/nodejs/node/pull/43989 Refs: https://github.com/nodejs/node/pull/43554 Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen (cherry picked from commit 7a18ee8315ecc8ad1a1316ff1c951694f8e8f7a4) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5dfaf3a..8b63cfe 100644 --- a/README.md +++ b/README.md @@ -506,6 +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 - `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`.