Skip to content

Commit 9ecb581

Browse files
authored
Update tests.js
1 parent e09f439 commit 9ecb581

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/01.2-Your-First-Style/tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("All the styles should be applied", ()=>{
1313
expect(styles["color"]).toBe("yellow");
1414
});
1515

16-
test("The body tag should not contain any inline style", ()=>{
16+
test("The <body> tag should not contain any inline style", ()=>{
1717
let bodyInlineStyle = document.getElementsByTagName("body");
1818
let emptyBodyInlineStyle = {};
1919
expect(bodyInlineStyle[0].style._values).toEqual(emptyBodyInlineStyle);
@@ -24,7 +24,7 @@ describe("All the styles should be applied", ()=>{
2424
expect(a.style._values).toEqual(emptyBodyInlineStyle);
2525
});
2626

27-
test("You should not change the existing head tag elements", ()=>{
27+
test("You should not change the existing <head> tag elements", ()=>{
2828
let head = document.querySelector('head')
2929
expect(head).toBeTruthy()
3030

0 commit comments

Comments
 (0)