Skip to content

Commit 58022d1

Browse files
authored
Update tests.js
1 parent 2cd2ff5 commit 58022d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/02.1-Background/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>`;
@@ -37,7 +37,7 @@ describe("All the styles should be applied", ()=>{
3737
expect(styles["background-repeat"]).toBe("repeat");
3838
});
3939

40-
test("You should not change the existing head tag elements", ()=>{
40+
test("You should not change the existing <head> tag elements", ()=>{
4141
let head = document.querySelector('head')
4242
expect(head).toBeTruthy()
4343

0 commit comments

Comments
 (0)