File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
site/e2e/tests/organizations Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,9 @@ test.describe("IdpRoleSyncPage", () => {
145
145
await page . getByRole ( "combobox" ) . click ( ) ;
146
146
await page . waitForTimeout ( 1000 ) ;
147
147
148
- const option = await page . getByRole ( "option" , { name : / O r g a n i z a t i o n A d m i n / i } ) ;
148
+ const option = await page . getByRole ( "option" , {
149
+ name : / O r g a n i z a t i o n A d m i n / i,
150
+ } ) ;
149
151
150
152
await expect ( option ) . toBeAttached ( { timeout : 30000 } ) ;
151
153
await expect ( option ) . toBeVisible ( ) ;
@@ -159,9 +161,7 @@ test.describe("IdpRoleSyncPage", () => {
159
161
// Verify new mapping appears in table
160
162
const newRow = page . getByTestId ( `role-${ idpRoleName } ` ) ;
161
163
await expect ( newRow ) . toBeVisible ( ) ;
162
- await expect (
163
- newRow . getByRole ( "cell" , { name : idpRoleName } ) ,
164
- ) . toBeVisible ( ) ;
164
+ await expect ( newRow . getByRole ( "cell" , { name : idpRoleName } ) ) . toBeVisible ( ) ;
165
165
await expect (
166
166
newRow . getByRole ( "cell" , { name : "organization-admin" } ) ,
167
167
) . toBeVisible ( ) ;
You can’t perform that action at this time.
0 commit comments