fix: added 3 new tests to mutations challenge (#36857)

This commit is contained in:
Randell Dawson
2019-09-30 13:33:57 -07:00
committed by Manish Giri
parent aada59b068
commit 8225ce7572

View File

@ -43,6 +43,12 @@ tests:
testString: assert(mutation(["hello", "neo"]) === false);
- text: <code>mutation(["voodoo", "no"])</code> should return false.
testString: assert(mutation(["voodoo", "no"]) === false);
- text: <code>mutation(["ate", "date"] should return false</code> should return false.
testString: assert(mutation(["ate", "date"]) === false);
- text: <code>mutation(["Tiger", "Zebra"])</code> should return false.
testString: assert(mutation(["Tiger", "Zebra"]) === false);
- text: <code>mutation(["Noel", "Ole"])</code> should return true.
testString: assert(mutation(["Noel", "Ole"]) === true);
```