From 4afc588762a7a13f4b883238d76252dc8b147452 Mon Sep 17 00:00:00 2001 From: Colby Fayock Date: Sat, 30 May 2020 23:29:38 -0400 Subject: [PATCH] Step 3: intentionally breaking code to see tests fail --- index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index e4835c2..696eab2 100644 --- a/index.js +++ b/index.js @@ -1,9 +1,7 @@ function mooncakeSays(message) { - let mooncake = '(o.o)'; + let mooncake = '(O.o)'; - if ( !message ) { - return `${mooncake} chookity?`; - } + if ( !message ) mooncake; return `${mooncake} ${message}`; }