File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports [` FooterComponent should create 1` ] = ` FooterComponentSpec { } ` ;
Original file line number Diff line number Diff line change @@ -73,6 +73,11 @@ <h6 class="footer__sectionTitle">Who made this?</h6>
73
73
</ span >
74
74
Buy me a coffee
75
75
</ a >
76
+
77
+ < a href ="https://www.twitch.tv/whitep4nth3r "
78
+ rel ="nofollow noopener noreferrer "
79
+ target ="_blank "
80
+ class ="footer__twitchButton "> Watch live on Twitch!</ a >
76
81
</ div >
77
82
78
83
</ div >
Original file line number Diff line number Diff line change 169
169
width : pxToRem (20 );
170
170
margin-right : pxToRem ($grid-unit / 2 );
171
171
}
172
+
173
+ .footer__twitchButton {
174
+ background-color : #9147ff ;
175
+ color : var (--white );
176
+ padding : pxToRem ($grid-unit * 2 );
177
+ font-family : var (--font-family-main );
178
+ font-weight : var (--font-weight-bold );
179
+ border-radius : pxToRem (6 );
180
+ text-decoration : none ;
181
+ margin-top : pxToRem ($grid-unit * 4 );
182
+ }
Original file line number Diff line number Diff line change @@ -33,5 +33,6 @@ describe('FooterComponent', () => {
33
33
34
34
it ( 'should create' , ( ) => {
35
35
expect ( component ) . toBeTruthy ( ) ;
36
+ expect ( component ) . toMatchSnapshot ( ) ;
36
37
} ) ;
37
38
} ) ;
You can’t perform that action at this time.
0 commit comments