@@ -15,10 +15,10 @@ describe('UserProfile', () => {
15
15
} ) ;
16
16
17
17
render ( < UserProfile /> , { wrapper } ) ;
18
- const profileElements = screen . getAllByText ( / P r o f i l e / i) ;
19
- expect ( profileElements . some ( el => el . tagName . toUpperCase ( ) === 'BUTTON' ) ) . toBe ( true ) ;
20
- const securityElements = screen . getAllByText ( / S e c u r i t y / i) ;
21
- expect ( securityElements . some ( el => el . tagName . toUpperCase ( ) === 'BUTTON' ) ) . toBe ( true ) ;
18
+ const profileElements = screen . getAllByRole ( 'button' , { name : / P r o f i l e / i } ) ;
19
+ expect ( profileElements . length ) . toBeGreaterThan ( 0 ) ;
20
+ const securityElements = screen . getAllByRole ( 'button' , { name : / S e c u r i t y / i } ) ;
21
+ expect ( securityElements . length ) . toBeGreaterThan ( 0 ) ;
22
22
} ) ;
23
23
24
24
it ( 'includes custom nav items' , async ( ) => {
@@ -45,14 +45,14 @@ describe('UserProfile', () => {
45
45
46
46
props . setProps ( { customPages } ) ;
47
47
render ( < UserProfile /> , { wrapper } ) ;
48
- const profileElements = screen . getAllByText ( / P r o f i l e / i) ;
49
- expect ( profileElements . some ( el => el . tagName . toUpperCase ( ) === 'BUTTON' ) ) . toBe ( true ) ;
50
- const securityElements = screen . getAllByText ( / S e c u r i t y / i) ;
51
- expect ( securityElements . some ( el => el . tagName . toUpperCase ( ) === 'BUTTON' ) ) . toBe ( true ) ;
52
- const customElements = screen . getAllByText ( / C u s t o m 1 / i) ;
53
- expect ( customElements . some ( el => el . tagName . toUpperCase ( ) === 'BUTTON' ) ) . toBe ( true ) ;
54
- const externalElements = screen . getAllByText ( / E x t e r n a l L i n k / i) ;
55
- expect ( externalElements . some ( el => el . tagName . toUpperCase ( ) === 'BUTTON' ) ) . toBe ( true ) ;
48
+ const profileElements = screen . getAllByRole ( 'button' , { name : / P r o f i l e / i } ) ;
49
+ expect ( profileElements . length ) . toBeGreaterThan ( 0 ) ;
50
+ const securityElements = screen . getAllByRole ( 'button' , { name : / S e c u r i t y / i } ) ;
51
+ expect ( securityElements . length ) . toBeGreaterThan ( 0 ) ;
52
+ const customElements = screen . getAllByRole ( 'button' , { name : / C u s t o m 1 / i } ) ;
53
+ expect ( customElements . length ) . toBeGreaterThan ( 0 ) ;
54
+ const externalElements = screen . getAllByRole ( 'button' , { name : / E x t e r n a l L i n k / i } ) ;
55
+ expect ( externalElements . length ) . toBeGreaterThan ( 0 ) ;
56
56
} ) ;
57
57
} ) ;
58
58
} ) ;
0 commit comments