@@ -317,10 +317,10 @@ describe('Navigation UI Component', () => {
317
317
. query ( By . css ( 'nav > ul > li:nth-child(2) > button' ) )
318
318
. nativeElement . click ( ) ;
319
319
element
320
- . query ( By . css ( 'button[aria-controls="Child 1"]' ) )
320
+ . query ( By . css ( 'button[aria-controls="child- 1"]' ) )
321
321
. nativeElement . click ( ) ;
322
322
element
323
- . query ( By . css ( 'button[aria-controls="Sub child 1"]' ) )
323
+ . query ( By . css ( 'button[aria-controls="sub- child- 1"]' ) )
324
324
. nativeElement . click ( ) ;
325
325
326
326
expect ( element . queryAll ( By . css ( 'li.is-open:not(.back)' ) ) . length ) . toBe ( 1 ) ;
@@ -365,10 +365,10 @@ describe('Navigation UI Component', () => {
365
365
it ( 'should apply role="heading" to nested dropdown trigger button while on desktop' , ( ) => {
366
366
fixture . detectChanges ( ) ;
367
367
const nestedTriggerButton = fixture . debugElement . query (
368
- By . css ( 'button[aria-controls="Child 1"]' )
368
+ By . css ( 'button[aria-controls="child- 1"]' )
369
369
) . nativeElement ;
370
370
const rootTriggerButton = fixture . debugElement . query (
371
- By . css ( 'button[aria-controls="Root 1"]' )
371
+ By . css ( 'button[aria-controls="root- 1"]' )
372
372
) . nativeElement ;
373
373
374
374
expect ( nestedTriggerButton . getAttribute ( 'role' ) ) . toEqual ( 'heading' ) ;
@@ -385,7 +385,7 @@ describe('Navigation UI Component', () => {
385
385
const spy = spyOn ( navigationComponent , 'toggleOpen' ) ;
386
386
const spaceEvent = new KeyboardEvent ( 'keydown' , { code : 'Space' } ) ;
387
387
const dropDownButton = element . query (
388
- By . css ( 'button[aria-controls="Sub child 1"]' )
388
+ By . css ( 'button[aria-controls="sub- child- 1"]' )
389
389
) . nativeElement ;
390
390
Object . defineProperty ( spaceEvent , 'target' , { value : dropDownButton } ) ;
391
391
@@ -399,7 +399,7 @@ describe('Navigation UI Component', () => {
399
399
const spy = spyOn ( firstChild . nativeElement , 'focus' ) ;
400
400
const spaceEvent = new KeyboardEvent ( 'keydown' , { code : 'Space' } ) ;
401
401
const dropDownButton = element . query (
402
- By . css ( 'button[aria-controls="Sub child 1"]' )
402
+ By . css ( 'button[aria-controls="sub- child- 1"]' )
403
403
) . nativeElement ;
404
404
Object . defineProperty ( spaceEvent , 'target' , { value : dropDownButton } ) ;
405
405
@@ -420,7 +420,7 @@ describe('Navigation UI Component', () => {
420
420
} ) ;
421
421
const spaceEvent = new KeyboardEvent ( 'keydown' , { code : 'Space' } ) ;
422
422
const dropDownButton = element . query (
423
- By . css ( 'button[aria-controls="Sub child 1"]' )
423
+ By . css ( 'button[aria-controls="sub- child- 1"]' )
424
424
) . nativeElement ;
425
425
Object . defineProperty ( spaceEvent , 'target' , { value : dropDownButton } ) ;
426
426
Object . defineProperty ( arrowDownEvent , 'target' , {
@@ -471,22 +471,21 @@ describe('Navigation UI Component', () => {
471
471
const childNode = rootNode ?. children ?. [ 0 ] ;
472
472
const rootTitle = rootNode ?. title ;
473
473
const childTitle = childNode ?. title ;
474
+ const sanitizedRootTitle =
475
+ navigationComponent . getSanitizedTitle ( rootTitle ) ;
476
+ const sanitizedChildTitle =
477
+ navigationComponent . getSanitizedTitle ( childTitle ) ;
478
+
474
479
fixture . detectChanges ( ) ;
475
480
const nestedTriggerButton = fixture . debugElement . query (
476
- By . css ( `button[aria-label="${ childTitle } "]` )
481
+ By . css ( `button[aria-label="${ sanitizedRootTitle } "]` )
477
482
) . nativeElement ;
478
483
const rootTriggerButton = fixture . debugElement . query (
479
- By . css ( `button[aria-label="${ rootTitle } "]` )
484
+ By . css ( `button[aria-label="${ sanitizedChildTitle } "]` )
480
485
) . nativeElement ;
481
486
482
487
expect ( nestedTriggerButton ) . toBeDefined ( ) ;
483
488
expect ( rootTriggerButton ) . toBeDefined ( ) ;
484
- expect ( rootTriggerButton . getAttribute ( 'title' ) ) . toEqual (
485
- `navigation.menuButonTitle title:${ rootTitle } `
486
- ) ;
487
- expect ( nestedTriggerButton . getAttribute ( 'title' ) ) . toEqual (
488
- `navigation.menuButonTitle title:${ childTitle } `
489
- ) ;
490
489
} ) ;
491
490
} ) ;
492
491
} ) ;
0 commit comments