You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.isOk(el.length>0,'Looks like you removed the element with a class of `.tagline`. You will still need that, but will need to change it\'s element.');
56
+
assert.isOk(el,'Looks like you removed the element with a class of `.tagline`. You will still need that, but will need to change it\'s element.');
52
57
assert.equal(el.tagName.toLowerCase(),'section','Make sure to change the element with a class of `tagline` to a `section` element.');
53
58
});
54
59
55
60
it('should convert the skills @section',()=>{
56
61
constel=doc.querySelector('.skills');
57
-
assert.isOk(el.length>0,'Looks like you removed the element with a class of `.skills`. You will still need that, but will need to change it\'s element.');
58
-
assert.equal(skillsWithHtml.tagName.toLowerCase(),'section','Make sure to change the element with a class of `skills` to a `section` element.');
62
+
assert.isOk(el,'Looks like you removed the element with a class of `.skills`. You will still need that, but will need to change it\'s element.');
63
+
assert.equal(el.tagName.toLowerCase(),'section','Make sure to change the element with a class of `skills` to a `section` element.');
59
64
});
60
65
61
66
it('should convert the contact @section',()=>{
62
67
constel=doc.querySelector('.contact');
63
-
assert.isOk(el.length>0,'Looks like you removed the element with a class of `.contact`. You will still need that, but will need to change it\'s element.');
64
-
assert.equal(skillsWithHtml.tagName.toLowerCase(),'section','Make sure to change the element with a class of `contact` to a `section` element.');
68
+
assert.isOk(el,'Looks like you removed the element with a class of `.contact`. You will still need that, but will need to change it\'s element.');
69
+
assert.equal(el.tagName.toLowerCase(),'section','Make sure to change the element with a class of `contact` to a `section` element.');
0 commit comments