Fixed tests

Added check if the object isn't null and escaped quotes because text
enclosed apostrophe
pull/18182/head
Marcin Flotyński 2015-08-06 00:57:55 +02:00
parent 5bd6c6dc3f
commit 372b83d4f5
1 changed files with 3 additions and 3 deletions

View File

@ -2036,9 +2036,9 @@
"Add a comment at the top of your HTML that says <code>You shouldn't need to modify code below this line</code>." "Add a comment at the top of your HTML that says <code>You shouldn't need to modify code below this line</code>."
], ],
"tests": [ "tests": [
"assert(editor.match(/<!--/g).length > 0, 'Start a comment with <code>&#60;!--</code>.')", "assert(editor.match(/<!--/g) && editor.match(/<!--/g).length > 0, 'Start a comment with <code>&#60;!--</code>.')",
"assert(editor.match(/this line/g).length > 0, 'Your comment should have the text <code>You shouldn't need to modify code below this line</code>')", "assert(editor.match(/this line/g) && editor.match(/this line/g).length > 0, \"Your comment should have the text <code>You shouldn't need to modify code below this line</code>\")",
"assert(editor.match(/-->/g).length > 0, 'Be sure to close your comment with <code>--&#62;</code>.')" "assert(editor.match(/-->/g) && editor.match(/-->/g).length > 0, 'Be sure to close your comment with <code>--&#62;</code>.')"
], ],
"challengeSeed": [ "challengeSeed": [
"<div class='container-fluid'>", "<div class='container-fluid'>",