File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ describe("Projects", () => {
44
44
const projectImage = projectCard . children [ 1 ] as HTMLImageElement ; ;
45
45
// If there are any special characters in the image's url, encode them
46
46
expect ( projectImage . src ) . toBe ( `${ window . location . origin } ${ encodeURI ( project . image ) } ` ) ;
47
- expect ( projectImage . alt ) . toBe ( project . name ) ;
47
+ expect ( projectImage . alt ) . toBe ( `Screenshot of ${ project . name } ` ) ;
48
48
49
49
const projectAbout = projectCard . children [ 2 ] as HTMLParagraphElement ;
50
50
expect ( projectAbout ) . toHaveTextContent ( project . about ) ;
Original file line number Diff line number Diff line change @@ -56,15 +56,12 @@ const Projects: React.FC<OnClickProp> = ({ onClickLink }) => {
56
56
< img
57
57
className = "projects-image card-img-top"
58
58
src = { project . image }
59
- alt = { project . name }
59
+ alt = { `Screenshot of ${ project . name } ` }
60
60
/>
61
61
< p className = "projects-about card-text" >
62
62
{ project . about }
63
63
</ p >
64
- < p
65
- className = "projects-technology-header"
66
- aria-label = { `Made using: ${ project . technology } ` }
67
- >
64
+ < p className = "projects-technology-header" >
68
65
Made Using:
69
66
</ p >
70
67
< div className = "projects-technology-container" >
You can’t perform that action at this time.
0 commit comments