File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
integration/tests/machine-auth Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -301,15 +301,14 @@ testAgainstRunningApps({
301301 await u . po . organizationSwitcher . waitForMounted ( ) ;
302302 await u . po . organizationSwitcher . waitForAnOrganizationToSelected ( ) ;
303303
304- // Set up request interception to capture the subject parameter
304+ // Capture the subject parameter
305305 let capturedSubject : string | null = null ;
306306 await u . page . route ( '**/api_keys*' , async route => {
307307 const url = new URL ( route . request ( ) . url ( ) ) ;
308308 capturedSubject = url . searchParams . get ( 'subject' ) ;
309309 await route . continue ( ) ;
310310 } ) ;
311311
312- // Navigate to UserProfile API keys page
313312 await u . po . page . goToRelative ( '/user' ) ;
314313 await u . po . userProfile . waitForMounted ( ) ;
315314 await u . po . userProfile . switchToAPIKeysTab ( ) ;
You can’t perform that action at this time.
0 commit comments