File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/09-Anchor-Styles Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ describe("All the styles should be applied", () => {
20
20
expect ( cssArray ) . toBe ( ".threeDimension" ) ;
21
21
} )
22
22
23
- test ( "The 'a' tag in the index.html should not be deleted" , ( ) => {
23
+ test ( "The <a> tag in the index.html should not be deleted" , ( ) => {
24
24
// we can read from the source code
25
25
// console.log(html.toString());
26
26
expect ( html . toString ( ) . indexOf ( `<a` ) > - 1 ) . toBeTruthy ( ) ;
@@ -71,7 +71,7 @@ describe("All the styles should be applied", () => {
71
71
72
72
} ) ;
73
73
74
- test ( "You should not change the existing head tag elements" , ( ) => {
74
+ test ( "You should not change the existing < head> tag elements" , ( ) => {
75
75
let head = document . querySelector ( 'head' )
76
76
expect ( head ) . toBeTruthy ( )
77
77
You can’t perform that action at this time.
0 commit comments