Skip to content

Commit 5c8dbf6

Browse files
committed
feat(KFLUXUI-267): updated variable name from githubURL to gitURL
1 parent ca7625f commit 5c8dbf6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

e2e-tests/support/pages/tabs/IntegrationTestsTabPage.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { integrationTestsTabPO, addIntegrationTestStepPO } from '../../pageObjec
66

77
type integrationTableRow = {
88
name: string;
9-
githubURL: string;
9+
gitURL: string;
1010
optionalForRelease: string;
1111
revision: string;
1212
};
@@ -27,14 +27,14 @@ export class IntegrationTestsTabPage {
2727

2828
addIntegrationTest(
2929
integrationTestName: string,
30-
githubURL: string,
30+
gitURL: string,
3131
revision: string,
3232
pathInRepository: string,
3333
markOptionalForRelease?: string,
3434
) {
3535
this.verifySaveChangesIsDisabled();
3636
UIhelper.inputValueInTextBoxByLabelName('Integration test name', integrationTestName);
37-
UIhelper.inputValueInTextBoxByLabelName('Git URL', githubURL);
37+
UIhelper.inputValueInTextBoxByLabelName('Git URL', gitURL);
3838
UIhelper.inputValueInTextBoxByLabelName('Revision', revision);
3939
UIhelper.inputValueInTextBoxByLabelName('Path in repository', pathInRepository);
4040
if (markOptionalForRelease === 'uncheck') {
@@ -47,12 +47,12 @@ export class IntegrationTestsTabPage {
4747
Common.waitForLoad();
4848
}
4949

50-
editIntegrationTest(githubURL: string, markOptionalForRelease?: string) {
50+
editIntegrationTest(gitURL: string, markOptionalForRelease?: string) {
5151
this.verifyIntegrationNameIsDisabled();
5252
this.verifySaveChangesIsDisabled();
5353

54-
if (githubURL) {
55-
UIhelper.inputValueInTextBoxByLabelName('Git URL', githubURL);
54+
if (gitURL) {
55+
UIhelper.inputValueInTextBoxByLabelName('Git URL', gitURL);
5656
}
5757

5858
if (markOptionalForRelease === 'uncheck')
@@ -78,7 +78,7 @@ export class IntegrationTestsTabPage {
7878

7979
verifyRowInIntegrationTestsTable(rowDetails: integrationTableRow) {
8080
UIhelper.verifyRowInTable('Integration tests', rowDetails.name, [
81-
new RegExp(rowDetails.githubURL),
81+
new RegExp(rowDetails.gitURL),
8282
new RegExp(`^\\s*${rowDetails.optionalForRelease}\\s*$`),
8383
new RegExp(`^\\s*${rowDetails.revision}\\s*$`),
8484
]);

0 commit comments

Comments
 (0)