From 6fc32ab9b6cb7c8410108ccafb405646b88bb0c2 Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Fri, 22 Nov 2019 04:44:40 -0800 Subject: [PATCH] fix(curriculum): changed test text to use should for Front End Libraries (#37762) Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> --- ...d-elements-within-your-bootstrap-wells.english.md | 4 ++-- ...nt-awesome-icons-to-all-of-our-buttons.english.md | 2 +- .../add-font-awesome-icons-to-our-buttons.english.md | 6 +++--- ...dd-id-attributes-to-bootstrap-elements.english.md | 4 ++-- ...ply-the-default-bootstrap-button-style.english.md | 4 ++-- ...all-out-optional-actions-with-btn-info.english.md | 4 ++-- ...reate-a-block-element-bootstrap-button.english.md | 2 +- .../bootstrap/create-a-bootstrap-button.english.md | 4 ++-- .../bootstrap/create-a-bootstrap-headline.english.md | 4 ++-- .../bootstrap/create-a-bootstrap-row.english.md | 4 ++-- ...-class-to-target-with-jquery-selectors.english.md | 2 +- .../bootstrap/create-a-custom-heading.english.md | 6 +++--- .../bootstrap/create-bootstrap-wells.english.md | 6 +++--- .../ditch-custom-css-for-bootstrap.english.md | 4 ++-- ...within-a-bootstrap-container-fluid-div.english.md | 4 ++-- .../bootstrap/label-bootstrap-buttons.english.md | 12 ++++++------ .../bootstrap/label-bootstrap-wells.english.md | 4 ++-- ...m-elements-responsively-with-bootstrap.english.md | 8 ++++---- .../make-images-mobile-responsive.english.md | 2 +- .../responsively-style-checkboxes.english.md | 6 +++--- .../responsively-style-radio-buttons.english.md | 6 +++--- .../bootstrap/split-your-bootstrap-row.english.md | 4 ++-- .../style-text-inputs-as-form-controls.english.md | 8 ++++---- ...ste-the-bootstrap-button-color-rainbow.english.md | 2 +- .../use-a-span-to-target-inline-elements.english.md | 2 +- .../use-comments-to-clarify-code.english.md | 4 ++-- ...design-with-bootstrap-fluid-containers.english.md | 4 ++-- ...trap-grid-to-put-elements-side-by-side.english.md | 4 ++-- ...-of-a-dangerous-action-with-btn-danger.english.md | 4 ++-- ...ge-text-inside-an-element-using-jquery.english.md | 10 +++++----- ...nge-the-css-of-an-element-using-jquery.english.md | 2 +- .../jquery/clone-an-element-using-jquery.english.md | 2 +- .../jquery/delete-your-jquery-functions.english.md | 10 +++++----- .../disable-an-element-using-jquery.english.md | 6 +++--- ...ow-script-tags-and-document-ready-work.english.md | 4 ++-- .../jquery/remove-an-element-using-jquery.english.md | 4 ++-- ...ve-classes-from-an-element-with-jquery.english.md | 6 +++--- ...cific-child-of-an-element-using-jquery.english.md | 2 +- .../target-elements-by-class-using-jquery.english.md | 4 ++-- .../target-elements-by-id-using-jquery.english.md | 6 +++--- .../target-even-elements-using-jquery.english.md | 2 +- ...l-elements-with-selectors-using-jquery.english.md | 4 ++-- ...he-children-of-an-element-using-jquery.english.md | 2 +- ...-the-parent-of-an-element-using-jquery.english.md | 2 +- ...element-with-multiple-jquery-selectors.english.md | 10 +++++----- ...-appendto-to-move-elements-with-jquery.english.md | 2 +- .../use-jquery-to-modify-the-entire-page.english.md | 2 +- .../manage-state-locally-first.english.md | 2 +- .../react/define-an-html-class-in-jsx.english.md | 2 +- .../redux/create-a-redux-store.english.md | 4 ++-- 50 files changed, 109 insertions(+), 109 deletions(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md index a2214e7e80..f07d7a5df5 100644 --- a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md @@ -21,11 +21,11 @@ Nest three button elements within each of your well button elements within each of your div elements with class well. + - text: Three button elements should be nested within each of your div elements with class well. testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3); - text: You should have a total of 6 button elements. testString: assert($("button") && $("button").length > 5); - - text: Make sure all your button elements have closing tags. + - text: All of your button elements should have closing tags. testString: assert(code.match(/<\/button>/g) && code.match(/