Add tests for having single ol and ul element
This commit is contained in:
@ -1159,6 +1159,8 @@
|
||||
"tests": [
|
||||
"assert((/Top 3 things cats hate:/i).test($(\"ol\").prev().text()), 'message: You should have an ordered list for \"Top 3 things cats hate:\"');",
|
||||
"assert((/Things cats love:/i).test($(\"ul\").prev().text()), 'message: You should have an unordered list for \"Things cats love:\"');",
|
||||
"assert.equal($(\"ul\").length, 1, 'message: You should have only one <code>ul</code> element.');",
|
||||
"assert.equal($(\"ol\").length, 1, 'message: You should have only one <code>ol</code> element.');",
|
||||
"assert.equal($(\"ul li\").length, 3, 'message: You should have three <code>li</code> elements within your <code>ul</code> element.');",
|
||||
"assert.equal($(\"ol li\").length, 3, 'message: You should have three <code>li</code> elements within your <code>ol</code> element.');",
|
||||
"assert(code.match(/<\\/ul>/g) && code.match(/<\\/ul>/g).length === code.match(/<ul>/g).length, 'message: Make sure your <code>ul</code> element has a closing tag.');",
|
||||
|
Reference in New Issue
Block a user