From a06970ce6991d77a033de645fac6798a6d95f89f Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Wed, 22 Nov 2023 10:01:46 +0100 Subject: [PATCH] Singular condition being tested --- docs/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testing.md b/docs/testing.md index 9d42a6cb0..eb64b0e86 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -33,10 +33,10 @@ function functionUnderTest(Shescape) { return args; } -// Test good conditions +// Test good condition assert.ok(functionUnderTest(Stubscape)); -// Test bad conditions +// Test bad condition assert.throws(() => functionUnderTest(Throwscape)); ```