HTML: Tag nesting
Instructions
Loading...
Your exercise will be checked with these tests:
const { test } = require('tests');
test(({ query, querySelectorAll, expect }) => {
query(document, 'ul', HTMLUListElement);
const elements = querySelectorAll(document, 'ul > li', HTMLLIElement);
expect(elements).to.have.length(3);
});
Teacher's solution will be available in:
20:00
