From 9d2e89984cc29701a75efd1111f6e5a9a82d8652 Mon Sep 17 00:00:00 2001 From: Menno <69530278+menno-van-balen@users.noreply.github.com> Date: Thu, 24 Sep 2020 22:32:55 +0100 Subject: [PATCH] fix(learn): add notMatch method to instructions (#39655) update use regular expressions to test a string with the notMatch method --- .../use-regular-expressions-to-test-a-string.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/use-regular-expressions-to-test-a-string.english.md b/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/use-regular-expressions-to-test-a-string.english.md index 3720f57e95..1965a5d14e 100644 --- a/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/use-regular-expressions-to-test-a-string.english.md +++ b/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/use-regular-expressions-to-test-a-string.english.md @@ -13,8 +13,8 @@ As a reminder, this project is being built upon the following starter project on ## Instructions
-Use assert.match() to make the tests pass. - +Use assert.match() or assert.notMatch() to make the tests pass. +
## Tests