File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/frontend/apps/standalone_site/src/features/Footer/components Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ describe('<Footer />', () => {
4949 render ( < Footer /> ) ;
5050 expect ( await screen . findByText ( / T e s t P a g e / i) ) . toBeInTheDocument ( ) ;
5151 expect ( screen . getByText ( / G e n e r a l C o n d i t i o n s / i) ) . toBeInTheDocument ( ) ;
52- expect ( screen . getByText ( / © 2 0 2 4 M a r s h a E d u c a t i o n / i) ) . toBeInTheDocument ( ) ;
52+ expect ( screen . getByText ( / © 2 0 2 5 M a r s h a E d u c a t i o n / i) ) . toBeInTheDocument ( ) ;
5353 expect (
5454 screen . getByText ( 'Financed by the recovery plan' ) ,
5555 ) . toBeInTheDocument ( ) ;
@@ -104,7 +104,7 @@ describe('<Footer />', () => {
104104 render ( < Footer /> ) ;
105105 expect ( await screen . findByText ( / c u s t o m c o p y r i g h t / i) ) . toBeInTheDocument ( ) ;
106106 expect (
107- screen . queryByText ( / © 2 0 2 4 M a r s h a E d u c a t i o n / i) ,
107+ screen . queryByText ( / © 2 0 2 5 M a r s h a E d u c a t i o n / i) ,
108108 ) . not . toBeInTheDocument ( ) ;
109109 expect (
110110 screen . queryByRole ( 'link' , { name : 'Twitter' } ) ,
@@ -132,7 +132,7 @@ describe('<Footer />', () => {
132132
133133 render ( < Footer /> ) ;
134134 expect (
135- await screen . findByText ( / © 2 0 2 4 M a r s h a E d u c a t i o n / i) ,
135+ await screen . findByText ( / © 2 0 2 5 M a r s h a E d u c a t i o n / i) ,
136136 ) . toBeInTheDocument ( ) ;
137137 expect (
138138 screen . queryByRole ( 'link' , { name : 'Twitter' } ) ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const Footer = ({ withoutWave }: { withoutWave?: boolean }) => {
6161 const { getSiteConfig } = useSiteConfig ( ) ;
6262 const siteConfig = getSiteConfig ( ) ;
6363
64- const defaultFooterCopyright = '© 2024 Marsha Education' ;
64+ const defaultFooterCopyright = '© 2025 Marsha Education' ;
6565
6666 return (
6767 < Box type = "footer" margin = { { top : 'auto' } } color = "white" fill = "horizontal" >
You can’t perform that action at this time.
0 commit comments