first fixes - length larger _or equal_ to 1

I'm not sure if the tests are too vague - they allow to comment out way
more than just the text specified - like the whole page..
pull/18182/head
Marcin Flotyński 2015-08-06 00:20:52 +02:00
parent cb929cdba9
commit 16add147e4
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>."
],
"tests": [
"assert(editor.match(/<!--/g).length > 1, 'Start a comment with <code>&#60;!--</code>.')",
"assert(editor.match(/this line/g).length > 1, 'Your comment should have the text <code>You shouldn't need to modify code below this line</code>')",
"assert(editor.match(/-->/g).length > 1, 'Be sure to close your comment with <code>--&#62;</code>.')"
"assert(editor.match(/<!--/g).length >= 1, 'Start a comment with <code>&#60;!--</code>.')",
"assert(editor.match(/this line/g).length >= 1, 'Your comment should have the text <code>You shouldn't need to modify code below this line</code>')",
"assert(editor.match(/-->/g).length >= 1, 'Be sure to close your comment with <code>--&#62;</code>.')"
],
"challengeSeed": [
"<div class='container-fluid'>",