Skip to content

Commit f5f4148

Browse files
authored
Update tests.js
1 parent 2be6b49 commit f5f4148

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/04.1-Combined-Rules/tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe("All the styles should be applied", ()=> {
1111
const link = document.querySelector("link");
1212
const title = document.querySelector('title');
1313

14-
test("The body tag should not contain any inline style", ()=> {
14+
test("The <body> tag should not contain any inline style", ()=> {
1515
document.querySelector(
1616
"head"
1717
).innerHTML = `<style>${css.toString()}</style>`;
@@ -113,7 +113,7 @@ describe("All the styles should be applied", ()=> {
113113
expect(padLeft).toBeFalsy();
114114
});
115115

116-
test("You should not change the existing head tag elements", ()=> {
116+
test("You should not change the existing <head> tag elements", ()=> {
117117
let head = document.querySelector('head')
118118
expect(head).toBeTruthy()
119119

0 commit comments

Comments
 (0)