Skip to content

Commit a664358

Browse files
committed
Fis tests
1 parent 88be395 commit a664358

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/pages/vscode.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ export abstract class VSCode {
345345

346346
const manageProfileView = await this.getView(KAIViews.manageProfiles);
347347

348-
await manageProfileView.getByRole('button', { name: '+ New Profile' }).click();
348+
await manageProfileView.getByRole('button', { name: 'New Profile' }).click();
349349

350350
const randomName = generateRandomString();
351351
const nameToUse = profileName ? profileName : randomName;

tests/e2e/tests/base/profile-management.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test.describe(`Profile Tests`, { tag: ['@tier3'] }, () => {
4949
const errorMessage = profileView.locator('.pf-m-error', {
5050
hasText: 'A profile with this name already exists.',
5151
});
52-
await profileView.getByRole('button', { name: '+ New Profile' }).click();
52+
await profileView.getByRole('button', { name: 'New Profile' }).click();
5353
await profileView.getByRole('textbox', { name: 'Profile Name' }).fill(existingProfileName);
5454
const sourceInput = profileView.getByRole('combobox', { name: 'Type to filter' }).nth(1);
5555
await sourceInput.click({ delay: 500 });

0 commit comments

Comments
 (0)