Merge pull request #3112 from AryanJ-NYC/AryanJ-NYC-3105

Properly checks that .length() is used in JS brackets notation challenges
This commit is contained in:
Arsen Melikyan
2015-09-06 09:21:34 +04:00

View File

@ -221,7 +221,7 @@
],
"tests": [
"assert(lastLetterOfLastName === \"e\", 'lastLetterOfLastName should be \"e\"');",
"assert(editor.getValue().match(/\\.length/g), 'You have to use <code>.length</code> to get the last letter');"
"assert(editor.getValue().match(/\\.length/g).length === 2, 'You have to use <code>.length</code> to get the last letter');"
],
"challengeSeed": [
"var firstName = \"Ada\";",
@ -253,7 +253,7 @@
],
"tests": [
"assert(secondToLastLetterOfLastName === 'c', 'secondToLastLetterOfLastName should be \"c\".');",
"assert(editor.getValue().match(/\\.length/g), 'You have to use .length to get the third last letter.');"
"assert(editor.getValue().match(/\\.length/g).length === 2, 'You have to use .length to get the third last letter.');"
],
"challengeSeed": [
"var firstName = \"Ada\";",