File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/04.1-Combined-Rules 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>` ;
@@ -113,7 +113,7 @@ describe("All the styles should be applied", ()=> {
113
113
expect ( padLeft ) . toBeFalsy ( ) ;
114
114
} ) ;
115
115
116
- test ( "You should not change the existing head tag elements" , ( ) => {
116
+ test ( "You should not change the existing < head> tag elements" , ( ) => {
117
117
let head = document . querySelector ( 'head' )
118
118
expect ( head ) . toBeTruthy ( )
119
119
You can’t perform that action at this time.
0 commit comments