Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
fix(challenges): remove unnecessary test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
anku255 authored and raisedadead committed Jun 30, 2018
1 parent 6a8a9db commit 17af3dd
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions challenges/01-responsive-web-design/css-flexbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -806,20 +806,12 @@
"description": [
"The last challenge introduced the <code>align-items</code> property and gave an example. This property can be applied to a few tweet embed elements to align the flex items inside them.",
"<hr>",
"Add the CSS property <code>align-items</code> to the header's <code>.follow-btn</code> element, the header's <code>h3</code>, and the header's <code>h4</code>. Set the value to center."
"Add the CSS property <code>align-items</code> to the header's <code>.follow-btn</code> element. Set the value to center."
],
"tests": [
{
"text": "The <code>.follow-btn</code> element should have the <code>align-items</code> property set to a value of center.",
"testString": "assert($('.follow-btn').css('align-items') == 'center', 'The <code>.follow-btn</code> element should have the <code>align-items</code> property set to a value of center.');"
},
{
"text": "The <code>h3</code> element should have the <code>align-items</code> property set to a value of center.",
"testString": "assert($('h3').css('align-items') == 'center', 'The <code>h3</code> element should have the <code>align-items</code> property set to a value of center.');"
},
{
"text": "The <code>h4</code> element should have the <code>align-items</code> property set to a value of center.",
"testString": "assert($('h4').css('align-items') == 'center', 'The <code>h4</code> element should have the <code>align-items</code> property set to a value of center.');"
}
],
"solutions": [],
Expand Down

0 comments on commit 17af3dd

Please sign in to comment.