Update Add Images challenge to accept long URL

pull/10347/head
dhcodes 2016-08-25 16:15:52 -05:00
parent 70afc1bcb2
commit aba454d962
1 changed files with 1 additions and 1 deletions

View File

@ -1128,7 +1128,7 @@
], ],
"tests": [ "tests": [
"assert($(\"img\").length > 0, 'message: Your page should have an image element.');", "assert($(\"img\").length > 0, 'message: Your page should have an image element.');",
"assert(new RegExp(\"\\/\\/bit.ly\\/fcc-relaxing-cat\", \"gi\").test($(\"img\").attr(\"src\")), 'message: Your image should have a <code>src</code> attribute that points to the kitten image.');", "assert(new RegExp(\"\\/\\/bit.ly\\/fcc-relaxing-cat|\\/\\/s3.amazonaws.com\\/freecodecamp\\/relaxing-cat.jpg\", \"gi\").test($(\"img\").attr(\"src\")), 'message: Your image should have a <code>src</code> attribute that points to the kitten image.');",
"assert(code.match(/alt\\s*?=\\s*?(\\\"|\\').*(\\\"|\\')/), 'message: Your image element <strong>must</strong> have an <code>alt</code> attribute.');" "assert(code.match(/alt\\s*?=\\s*?(\\\"|\\').*(\\\"|\\')/), 'message: Your image element <strong>must</strong> have an <code>alt</code> attribute.');"
], ],
"type": "waypoint", "type": "waypoint",