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