diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json
index 0b1b6402cae..a8b417283b2 100644
--- a/challenges/bootstrap.json
+++ b/challenges/bootstrap.json
@@ -1417,13 +1417,18 @@
},
{
"id": "bad87fee1348bd9aec908846",
- "name": "Waypoint: Build a jQuery Playground in Bootstrap",
- "dashedName": "waypoint-line-up-form-elements-responsively-with-bootstrap",
+ "name": "Waypoint: Create a Bootstrap Headline",
+ "dashedName": "waypoint-create-a-bootstrap-headline",
"difficulty": 18,
"description": [
+
],
"tests": [
-
+ "assert($('h3') && $('h3').length > 0, 'Add a h3 element to your page.')",
+ "assert(editor.match(/<\\/h3>/g) && editor.match(/
h3 element should be colored by applying the class \"text-primary\"')",
+ "assert($('h3').hasClass('text-center'), 'Your h3 element should be centered by applying the class \"text-center\"')",
+ "assert.isTrue((/jquery(\\s)+playground/gi).test($('h3').text()), 'Your h3 element should have the text \"jQuery Playground\".')"
],
"challengeSeed": [
"",
@@ -1442,17 +1447,48 @@
"namePt": "",
"descriptionPt": []
},
+ {
+ "id": "bad87fee1348bd9bec908846",
+ "name": "Waypoint: Create a Bootstrap Row",
+ "dashedName": "waypoint-create-a-bootstrap-row",
+ "difficulty": 18.5,
+ "description": [
+ ],
+ "tests": [
+ "assert($('div').length > 0, 'Add a div element to your page.')",
+ "assert($('div').hasClass('row'), 'Your div element should have the class \"row\"')",
+ "assert(editor.match(/<\\/div>/g) && editor.match(/div class=\"col-xs-6\" elements within your div class=\"row\" element.')",
+ "assert(editor.match(/<\\/div>/g) && editor.match(/div elements inside your div class=\"row\"> element both with the class \"col-xs-6\"')",
+ "assert($('div.row').children('div.col-xs-6').length > 1, 'Wrap both of your div class=\"col-xs-6\" elements within your div class=\"row\" element.')",
+ "assert($('div.col-xs-6').children('div.well').length > 1, 'Wrap both of your div class=\"col-xs-6\" elements within your div class=\"row\" element.')",
+ "assert(editor.match(/<\\/div>/g) && editor.match(/