@@ -40,7 +40,7 @@ describe('Test AuthDomain component', () => {
40
40
it ( 'Displays authorization domain section' , ( ) => {
41
41
mountAuthDomain ( [ ] ) ;
42
42
43
- cy . get ( 'label[for="authorization-domain"]' )
43
+ cy . get ( 'label[for="select- authorization-domain-select "]' )
44
44
. should ( 'contain.text' , 'Authorization Domain' )
45
45
. should ( 'contain.text' , '(optional)' ) ;
46
46
} ) ;
@@ -52,12 +52,12 @@ describe('Test AuthDomain component', () => {
52
52
] ;
53
53
mountAuthDomain ( userGroups ) ;
54
54
55
- cy . get ( '#authorization-domain-select' )
55
+ cy . get ( '#select- authorization-domain-select' )
56
56
. should ( 'exist' )
57
57
. should ( 'not.be.disabled' )
58
58
. should ( 'have.value' , '' ) ;
59
59
60
- cy . get ( '#authorization-domain-select' ) . parent ( ) . click ( ) ;
60
+ cy . get ( '#select- authorization-domain-select' ) . parent ( ) . click ( ) ;
61
61
cy . get ( '[data-cy^=menuItem]' ) . should ( 'have.length' , userGroups . length ) ;
62
62
} ) ;
63
63
@@ -68,19 +68,19 @@ describe('Test AuthDomain component', () => {
68
68
] ;
69
69
mountAuthDomain ( userGroups ) ;
70
70
71
- cy . get ( '#authorization-domain-select' ) . parent ( ) . click ( ) ;
71
+ cy . get ( '#select- authorization-domain-select' ) . parent ( ) . click ( ) ;
72
72
cy . get ( '[data-cy=menuItem-group2]' ) . click ( ) ;
73
- cy . get ( '#authorization-domain-select' ) . should ( 'have.value' , 'group2' ) ;
73
+ cy . get ( '#select- authorization-domain-select' ) . should ( 'have.value' , 'group2' ) ;
74
74
} ) ;
75
75
76
76
it ( 'Enables authorization domain dropdown when sufficient user groups' , ( ) => {
77
77
const userGroups = [ { groupEmail : 'email1' , groupName : 'group1' , role : 'READER' } ] ;
78
78
mountAuthDomain ( userGroups ) ;
79
- cy . get ( '#authorization-domain-select' ) . should ( 'not.be.disabled' ) ;
79
+ cy . get ( '#select- authorization-domain-select' ) . should ( 'not.be.disabled' ) ;
80
80
} ) ;
81
81
82
82
it ( 'Disables authorization domain dropdown when empty user groups' , ( ) => {
83
83
mountAuthDomain ( [ ] ) ;
84
- cy . get ( '#authorization-domain-select' ) . should ( 'be.disabled' ) ;
84
+ cy . get ( '#select- authorization-domain-select' ) . should ( 'be.disabled' ) ;
85
85
} ) ;
86
86
} ) ;
0 commit comments