File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
tests/integration/components Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1111 </div >
1212 <div class =" footer-social hide-on-mobile" >
1313 {{ #each @socialLinks as |link |}}
14- <a href ={{ link.href }} title ={{ link.title }} aria-label ={{ link.label }} >
14+ <a href ={{ link.href }} title ={{ link.title }} aria-label ={{ link.label }} rel = " me " >
1515 {{ svg-jar link.class }} {{ link.title }}
1616 </a >
1717 {{ /each }}
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ const socialLinks = [{
1515 href : 'https://discordapp.com/invite/zT3asNS' ,
1616 class : 'discord-logo' ,
1717 label : 'Join the Ember Community Discord'
18+ } , {
19+ title : 'Mastodon' ,
20+ href : 'https://hachyderm.io/@emberjs' ,
21+ class : 'mastodon-logo' ,
22+ label : 'Official Ember Mastodon Account'
1823} ] ;
1924
2025
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module('Integration | Component | es footer', function(hooks) {
1313 const footerSocialLinks = this . element . querySelectorAll ( '.footer-social a' ) ;
1414 const footerContribtuionsLinks = this . element . querySelectorAll ( '.footer-contributions a' ) ;
1515
16- assert . equal ( footerSocialLinks . length , 3 , 'social links are loading' ) ;
16+ assert . equal ( footerSocialLinks . length , 4 , 'social links are loading' ) ;
1717 assert . equal ( footerContribtuionsLinks . length , 5 , 'contributors links are loading' ) ;
1818 } ) ;
1919} ) ;
You can’t perform that action at this time.
0 commit comments