diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index fe481d3fa3..c8406bab73 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -1094,7 +1094,9 @@ "
Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "tests": [ - "assert($(\"img\").hasClass(\"smaller-image\"), 'message: Yourimg
element should have the class smaller-image
.');",
+ "assert($(\"img\").length === 1, 'message: Your code should only have 1 img
tag.');",
+ "assert($(\"img\").attr(\"src\") && $(\"img\").attr(\"src\") === \"https://bit.ly/fcc-relaxing-cat\", 'message: Your img
should have a src
attribute with a value of https://bit.ly/fcc-relaxing-cat
.');",
+ "assert($('img').attr(\"class\") && $(\"img\").attr(\"class\").match(/(^|\\s)smaller-image($|\\s)/), 'message: Your img
element should have the class smaller-image
.');",
"assert($(\"img\").width() === 100, 'message: Your image should be 100 pixels wide. Browser zoom should be at 100%.');"
],
"type": "waypoint",