@@ -6,7 +6,7 @@ import { integrationTestsTabPO, addIntegrationTestStepPO } from '../../pageObjec
6
6
7
7
type integrationTableRow = {
8
8
name : string ;
9
- githubURL : string ;
9
+ gitURL : string ;
10
10
optionalForRelease : string ;
11
11
revision : string ;
12
12
} ;
@@ -27,14 +27,14 @@ export class IntegrationTestsTabPage {
27
27
28
28
addIntegrationTest (
29
29
integrationTestName : string ,
30
- githubURL : string ,
30
+ gitURL : string ,
31
31
revision : string ,
32
32
pathInRepository : string ,
33
33
markOptionalForRelease ?: string ,
34
34
) {
35
35
this . verifySaveChangesIsDisabled ( ) ;
36
36
UIhelper . inputValueInTextBoxByLabelName ( 'Integration test name' , integrationTestName ) ;
37
- UIhelper . inputValueInTextBoxByLabelName ( 'Git URL' , githubURL ) ;
37
+ UIhelper . inputValueInTextBoxByLabelName ( 'Git URL' , gitURL ) ;
38
38
UIhelper . inputValueInTextBoxByLabelName ( 'Revision' , revision ) ;
39
39
UIhelper . inputValueInTextBoxByLabelName ( 'Path in repository' , pathInRepository ) ;
40
40
if ( markOptionalForRelease === 'uncheck' ) {
@@ -47,12 +47,12 @@ export class IntegrationTestsTabPage {
47
47
Common . waitForLoad ( ) ;
48
48
}
49
49
50
- editIntegrationTest ( githubURL : string , markOptionalForRelease ?: string ) {
50
+ editIntegrationTest ( gitURL : string , markOptionalForRelease ?: string ) {
51
51
this . verifyIntegrationNameIsDisabled ( ) ;
52
52
this . verifySaveChangesIsDisabled ( ) ;
53
53
54
- if ( githubURL ) {
55
- UIhelper . inputValueInTextBoxByLabelName ( 'Git URL' , githubURL ) ;
54
+ if ( gitURL ) {
55
+ UIhelper . inputValueInTextBoxByLabelName ( 'Git URL' , gitURL ) ;
56
56
}
57
57
58
58
if ( markOptionalForRelease === 'uncheck' )
@@ -78,7 +78,7 @@ export class IntegrationTestsTabPage {
78
78
79
79
verifyRowInIntegrationTestsTable ( rowDetails : integrationTableRow ) {
80
80
UIhelper . verifyRowInTable ( 'Integration tests' , rowDetails . name , [
81
- new RegExp ( rowDetails . githubURL ) ,
81
+ new RegExp ( rowDetails . gitURL ) ,
82
82
new RegExp ( `^\\s*${ rowDetails . optionalForRelease } \\s*$` ) ,
83
83
new RegExp ( `^\\s*${ rowDetails . revision } \\s*$` ) ,
84
84
] ) ;
0 commit comments