@@ -30,7 +30,7 @@ describe('NotificationBanner', () => {
3030
3131 it ( 'matches snapshot custom title' , async ( ) => {
3232 const { container } = await renderClient (
33- < NotificationBanner title = { ' Upcoming maintenance' } >
33+ < NotificationBanner title = " Upcoming maintenance" >
3434 < NotificationBanner . Heading >
3535 The service will be unavailable from 8pm to 9pm on Thursday 1 January 2025.
3636 </ NotificationBanner . Heading >
@@ -194,7 +194,7 @@ describe('NotificationBanner', () => {
194194
195195 it ( 'matches snapshot custom title (via server)' , async ( ) => {
196196 const { container } = await renderServer (
197- < NotificationBanner title = { ' Upcoming maintenance' } >
197+ < NotificationBanner title = " Upcoming maintenance" >
198198 < NotificationBanner . Heading >
199199 The service will be unavailable from 8pm to 9pm on Thursday 1 January 2025.
200200 </ NotificationBanner . Heading >
@@ -208,7 +208,7 @@ describe('NotificationBanner', () => {
208208 it ( 'matches snapshot custom title html (via server)' , async ( ) => {
209209 const { container } = await renderServer (
210210 < NotificationBanner >
211- < NotificationBanner . Title id = { ' custom-title' } >
211+ < NotificationBanner . Title id = " custom-title" >
212212 < strong > Very</ strong > important information
213213 </ NotificationBanner . Title >
214214 < NotificationBanner . Heading >
@@ -390,8 +390,8 @@ describe('NotificationBanner', () => {
390390
391391 it ( 'prioritises id of title element over provided title id' , async ( ) => {
392392 const { modules } = await renderClient (
393- < NotificationBanner titleId = { ' wrong-id' } >
394- < NotificationBanner . Title id = { ' correct-id' } > Important information</ NotificationBanner . Title >
393+ < NotificationBanner titleId = " wrong-id" >
394+ < NotificationBanner . Title id = " correct-id" > Important information</ NotificationBanner . Title >
395395 < NotificationBanner . Heading >
396396 The service will be unavailable from 8pm to 9pm on Thursday 1 January 2025.
397397 </ NotificationBanner . Heading >
0 commit comments