File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/02.1-Background Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ describe("All the styles should be applied", ()=>{
11
11
const link = document . querySelector ( "link" ) ;
12
12
const title = document . querySelector ( 'title' ) ;
13
13
14
- test ( "The body tag should not contain any inline style" , ( ) => {
14
+ test ( "The < body> tag should not contain any inline style" , ( ) => {
15
15
document . querySelector (
16
16
"head"
17
17
) . innerHTML = `<style>${ css . toString ( ) } </style>` ;
@@ -37,7 +37,7 @@ describe("All the styles should be applied", ()=>{
37
37
expect ( styles [ "background-repeat" ] ) . toBe ( "repeat" ) ;
38
38
} ) ;
39
39
40
- test ( "You should not change the existing head tag elements" , ( ) => {
40
+ test ( "You should not change the existing < head> tag elements" , ( ) => {
41
41
let head = document . querySelector ( 'head' )
42
42
expect ( head ) . toBeTruthy ( )
43
43
You can’t perform that action at this time.
0 commit comments