From 8ffff275bbb6a89d0f8fbe1c26a5502c0c1cf976 Mon Sep 17 00:00:00 2001 From: Zachary Clemans Date: Mon, 23 May 2016 22:22:33 -0400 Subject: [PATCH] add code tags for visual appeal add 'e' to code tag --- .../automated-testing-and-debugging.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/03-back-end-development-certification/automated-testing-and-debugging.json b/seed/challenges/03-back-end-development-certification/automated-testing-and-debugging.json index b339ed1b1a..0e71d518dc 100644 --- a/seed/challenges/03-back-end-development-certification/automated-testing-and-debugging.json +++ b/seed/challenges/03-back-end-development-certification/automated-testing-and-debugging.json @@ -11,7 +11,7 @@ "Both Chrome and Firefox have excellent JavaScript consoles, also known as DevTools, for debugging your JavaScript.", "You can find Developer tools in your Chrome's menu or Web Console in FireFox's menu. If you're using a different browser, or a mobile phone, we strongly recommend switching to desktop Firefox or Chrome.", "Let's print to this console using the console.log method.", - "console.log('Hello world!')" + "console.log('Hello world!');" ], "challengeSeed": [ "", @@ -22,7 +22,7 @@ "console.log('Hello world!');" ], "tests": [ - "assert(editor.getValue().match(/console\\.log\\(/gi), 'message: You should use the console.log method to log \"Hello world!\" to your JavaScript console.');" + "assert(editor.getValue().match(/console\\.log\\(/gi), 'message: You should use the console.log method to log \"Hello world!\" to your JavaScript console.');" ], "type": "waypoint", "challengeType": 1,