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 = [
40
40
{ id: ' contact' , url: ` /contact/get-in-touch?${ campaignParams } ` },
41
41
{ id: ' imprint' , url: ` /page/Impressum?${ campaignParams } ` },
42
42
{ id: ' data_protection' , url: ` /page/Datenschutz?${ campaignParams } ` },
43
+ { id: ' accessibility_statement' , url: ` /page/accessibility-statement?${ campaignParams } ` },
43
44
{ id: ' supporters_list' , url: ` /page/hall-of-fame?${ campaignParams } ` },
44
45
{ id: ' donor_comments' , url: ` /list-comments.html?${ campaignParams } ` },
45
46
];
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ describe( 'AppFooter.vue', () => {
7
7
[ 'contact' , 1 ] ,
8
8
[ 'imprint' , 2 ] ,
9
9
[ 'data_protection' , 3 ] ,
10
- [ 'supporters_list' , 4 ] ,
11
- [ 'donor_comments' , 5 ] ,
10
+ [ 'accessibility_statement' , 4 ] ,
11
+ [ 'supporters_list' , 5 ] ,
12
+ [ 'donor_comments' , 6 ] ,
12
13
] ) ( 'highlights the correct navigation items' , ( pageIdentifier : string , navItemIndex : number ) => {
13
14
const wrapper = shallowMount ( AppFooter , {
14
15
props : {
You can’t perform that action at this time.
0 commit comments