File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tests/unit/components/layout Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ const footerMenu = [
4040 { id: ' contact' , url: ` /contact/get-in-touch?${ campaignParams } ` },
4141 { id: ' imprint' , url: ` /page/Impressum?${ campaignParams } ` },
4242 { id: ' data_protection' , url: ` /page/Datenschutz?${ campaignParams } ` },
43+ { id: ' accessibility_statement' , url: ` /page/accessibility-statement?${ campaignParams } ` },
4344 { id: ' supporters_list' , url: ` /page/hall-of-fame?${ campaignParams } ` },
4445 { id: ' donor_comments' , url: ` /list-comments.html?${ campaignParams } ` },
4546];
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ describe( 'AppFooter.vue', () => {
77 [ 'contact' , 1 ] ,
88 [ 'imprint' , 2 ] ,
99 [ 'data_protection' , 3 ] ,
10- [ 'supporters_list' , 4 ] ,
11- [ 'donor_comments' , 5 ] ,
10+ [ 'accessibility_statement' , 4 ] ,
11+ [ 'supporters_list' , 5 ] ,
12+ [ 'donor_comments' , 6 ] ,
1213 ] ) ( 'highlights the correct navigation items' , ( pageIdentifier : string , navItemIndex : number ) => {
1314 const wrapper = shallowMount ( AppFooter , {
1415 props : {
You can’t perform that action at this time.
0 commit comments