froth-webdriverio-framework 7.0.42 → 7.0.43
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.
|
@@ -170,9 +170,9 @@ async function updateExecuitonDetails(frothUrl, token, id, resultdetails) {
|
|
|
170
170
|
data = await response.text();
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
173
|
+
// console.log('📤 API Response Status:', response.status);
|
|
174
|
+
// console.log('📤 API Response Headers:', Array.from(response.headers.entries()));
|
|
175
|
+
// console.log('📤 API Response Body:', data);
|
|
176
176
|
|
|
177
177
|
if (!response.ok) {
|
|
178
178
|
console.error(`❌ Failed to update execution details, status ${response.status}`);
|
|
@@ -106,9 +106,9 @@ const commonHooks = {
|
|
|
106
106
|
await setAllDetails.setTestDataDetails();
|
|
107
107
|
|
|
108
108
|
console.log('✅ All Environment Variables:');
|
|
109
|
-
for (const [key, value] of Object.entries(process.env)) {
|
|
110
|
-
|
|
111
|
-
}
|
|
109
|
+
// for (const [key, value] of Object.entries(process.env)) {
|
|
110
|
+
// console.log(`${key} = ${value}`);
|
|
111
|
+
// }
|
|
112
112
|
},
|
|
113
113
|
|
|
114
114
|
/* ========== ON WORKER ERROR (SESSION / DRIVER FAILURES) ========== */
|