We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 79f5790 + 6732619 commit 6b1a5d7Copy full SHA for 6b1a5d7
exercises/05-Specificity/tests.js
@@ -30,7 +30,7 @@ describe("All the styles should be applied", function () {
30
let thirdItSelector = document.styleSheets[0].cssRules[1].selectorText;
31
let thirdItBackground = document.styleSheets[0].cssRules[1].style.background;
32
33
- expect(thirdItSelector).toBe("#thirditem");
+ expect(thirdItSelector).toBe("li + #thirditem");
34
expect(thirdItBackground).toBe("yellow");
35
expect(cssArray).toBe("ul li");
36
expect(cssArrayBackground).toBe("blue");
0 commit comments