froth-webdriverio-framework 3.0.148 → 3.0.149
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -121,6 +121,7 @@ async function updateExecuitonDetails(frothUrl, token, id, resultdetails) {
|
|
|
121
121
|
formData.append('id', BUFFER.getItem("FROTH_EXECUTION_ID"))
|
|
122
122
|
formData.append('report_url', BUFFER.getItem("REPORT_URL"))
|
|
123
123
|
formData.append('updated_through_bot', true)
|
|
124
|
+
formData.append('run_id', process.env.CICD_RUN_ID)
|
|
124
125
|
if (resultdetails.comments != null)
|
|
125
126
|
formData.append('comments', JSON.stringify(resultdetails.comments))
|
|
126
127
|
|
|
@@ -43,7 +43,7 @@ async function setEnvVariables() {
|
|
|
43
43
|
BUFFER.setItem("ORGANISATION_DOMAIN_URL", process.env.ORGANISATION_DOMAIN_URL || "https://devapi.frothtestops.com");
|
|
44
44
|
BUFFER.setItem("FROTH_LOGIN_TOKEN", process.env.API_TOKEN)
|
|
45
45
|
console.log("api token in set evn variable :" + BUFFER.getItem("FROTH_LOGIN_TOKEN"))
|
|
46
|
-
|
|
46
|
+
console.log("CICD_RUN_ID in set evn variable :" + process.env.CICD_RUN_ID)
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
async function setLoginToken() {
|