From 6afe30cd6c32e79e64e5d3c4205acd5c54e46da2 Mon Sep 17 00:00:00 2001 From: Krishna Yeolekar Date: Fri, 18 Dec 2015 14:39:05 +0530 Subject: [PATCH] Boo who - add test cases --- .../intermediate-bonfires.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json index 6f6bb978f9..af75968d61 100644 --- a/challenges/01-front-end-development-certification/intermediate-bonfires.json +++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json @@ -438,7 +438,9 @@ "assert.strictEqual(boo({ \"a\": 1 }), false, 'message: boo({ \"a\": 1 }) should return false.');", "assert.strictEqual(boo(1), false, 'message: boo(1) should return false.');", "assert.strictEqual(boo(NaN), false, 'message: boo(NaN) should return false.');", - "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');" + "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');", + "assert.strictEqual(boo(\"true\"), false, 'message: boo(\"true\") should return false.');", + "assert.strictEqual(boo(\"false\"), false, 'message: boo(\"false\") should return false.');" ], "MDNlinks": [ "Boolean Objects"