testString: 'assert(($("p").length > 0), ''Create a <code>p</code> element.'');'
- text: Your <code>p</code> element should have the text "Hello Paragraph".
testString: 'assert.isTrue((/hello(\s)+paragraph/gi).test($("p").text()), ''Your <code>p</code> element should have the text "Hello Paragraph".'');'
- text: Make sure your <code>p</code> element has a closing tag.
testString: 'assert(code.match(/<\/p>/g) && code.match(/<\/p>/g).length === code.match(/<p/g).length,''Makesureyour<code>p</code> element has a closing tag.'');'