File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/01.2-Your-First-Style Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ describe("All the styles should be applied", ()=>{
13
13
expect ( styles [ "color" ] ) . toBe ( "yellow" ) ;
14
14
} ) ;
15
15
16
- test ( "The body tag should not contain any inline style" , ( ) => {
16
+ test ( "The < body> tag should not contain any inline style" , ( ) => {
17
17
let bodyInlineStyle = document . getElementsByTagName ( "body" ) ;
18
18
let emptyBodyInlineStyle = { } ;
19
19
expect ( bodyInlineStyle [ 0 ] . style . _values ) . toEqual ( emptyBodyInlineStyle ) ;
@@ -24,7 +24,7 @@ describe("All the styles should be applied", ()=>{
24
24
expect ( a . style . _values ) . toEqual ( emptyBodyInlineStyle ) ;
25
25
} ) ;
26
26
27
- test ( "You should not change the existing head tag elements" , ( ) => {
27
+ test ( "You should not change the existing < head> tag elements" , ( ) => {
28
28
let head = document . querySelector ( 'head' )
29
29
expect ( head ) . toBeTruthy ( )
30
30
You can’t perform that action at this time.
0 commit comments