Skip to content

Commit 39149b7

Browse files
committed
chore: clean up test
1 parent 74e106b commit 39149b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

integration/tests/machine-auth/component.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)