froth-webdriverio-framework 7.0.68 → 7.0.69
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.
|
@@ -105,6 +105,10 @@ const commonHooks = {
|
|
|
105
105
|
await setAllDetails.setSuiteDetails();
|
|
106
106
|
await setAllDetails.setTestDataDetails();
|
|
107
107
|
|
|
108
|
+
await setupBrowserStackCapabilities(config);
|
|
109
|
+
|
|
110
|
+
console.log('🚀 Final BrowserStack capabilities (onPrepare):');
|
|
111
|
+
console.log(JSON.stringify(config.capabilities, null, 2));
|
|
108
112
|
console.log('✅ All Environment Variables:');
|
|
109
113
|
// for (const [key, value] of Object.entries(process.env)) {
|
|
110
114
|
// console.log(`${key} = ${value}`);
|
|
@@ -142,7 +146,7 @@ const commonHooks = {
|
|
|
142
146
|
await validateTestSyntax(specs);
|
|
143
147
|
|
|
144
148
|
/** 2️⃣ Setup BrowserStack */
|
|
145
|
-
|
|
149
|
+
// await setupBrowserStackCapabilities(capabilities);
|
|
146
150
|
|
|
147
151
|
console.log('✅ beforeSession completed successfully');
|
|
148
152
|
|