Merge pull request #7238 from ChristianLapinig/fix/submit-button-tests

Fix test case so only the word "submit" can pass test
pull/18182/head
Logan Tegman 2016-02-25 18:55:44 -08:00
commit ccb235f1ae
1 changed files with 3 additions and 3 deletions

View File

@ -1765,7 +1765,7 @@
"tests": [
"assert($(\"form\").children(\"button\").length > 0, 'message: Your form should have a button inside it.');",
"assert($(\"button\").attr(\"type\") === \"submit\", 'message: Your submit button should have the attribute <code>type</code> set to <code>submit</code>.');",
"assert($(\"button\").text().match(/submit/gi), 'message: Your submit button should have the text \"Submit\".');",
"assert($(\"button\").text().match(/^\\s*submit\\s*$/gi), 'message: Your submit button should only have the text \"Submit\".');",
"assert(code.match(/<\\/button>/g) && code.match(/<button/g) && code.match(/<\\/button>/g).length === code.match(/<button/g).length, 'message: Make sure your <code>button</code> element has a closing tag.');"
],
"challengeType": 0,