From 24b7799d7a13e01b2394686ca59736acd47dd2c9 Mon Sep 17 00:00:00 2001 From: MANISH-GIRI Date: Mon, 14 Nov 2016 13:52:58 -0500 Subject: [PATCH] Add test in missing letters bonfire --- .../intermediate-bonfires.json | 1 + 1 file changed, 1 insertion(+) diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json index d3220e55c3..7cdaa9a13e 100644 --- a/challenges/01-front-end-development-certification/intermediate-bonfires.json +++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json @@ -450,6 +450,7 @@ "tests": [ "assert.deepEqual(fearNotLetter(\"abce\"), \"d\", 'message: fearNotLetter(\"abce\") should return \"d\".');", "assert.deepEqual(fearNotLetter(\"abcdefghjklmno\"), \"i\", 'message: fearNotLetter(\"abcdefghjklmno\") should return \"i\".');", + "assert.deepEqual(fearNotLetter(\"stvwx\"), \"u\", 'message: fearNotLetter(\"stvwx\") should return \"u\".');", "assert.isUndefined(fearNotLetter(\"bcd\"), 'message: fearNotLetter(\"bcd\") should return undefined.');", "assert.isUndefined(fearNotLetter(\"yz\"), 'message: fearNotLetter(\"yz\") should return undefined.');" ],