browserstack-node-sdk 1.3.3 → 1.4.0
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.
- package/browserstack.yml.sample +22 -19
- package/package.json +1 -1
- package/src/bin/cucumber-js/command.js +1 -1
- package/src/bin/cucumber-js/formatter/custom_formatter.js +1 -1
- package/src/bin/cucumber-js/formatter/custom_formatter_old_versions.js +1 -1
- package/src/bin/cucumber-js/test.setup.js +1 -1
- package/src/bin/cucumber-js/test_old.setup.js +1 -1
- package/src/bin/cucumber-js/timeout.setup.js +1 -1
- package/src/bin/jest/command.js +1 -1
- package/src/bin/jest/customEnvironment.js +1 -1
- package/src/bin/jest/customTestRunnerTemplate.js +1 -1
- package/src/bin/jest/jest.setup.js +1 -1
- package/src/bin/jest/test_before.setup.js +1 -1
- package/src/bin/launcher/launcher.js +1 -1
- package/src/bin/mocha/bstack-reporter/customReporter.js +1 -1
- package/src/bin/mocha/command.js +1 -1
- package/src/bin/mocha/test-observability/builderPatch.js +1 -1
- package/src/bin/mocha/test-observability/constants.js +1 -1
- package/src/bin/mocha/test-observability/data-hooks.js +1 -1
- package/src/bin/mocha/test-observability/helper.js +1 -1
- package/src/bin/mocha/test-observability/requestQueueHandler.js +1 -1
- package/src/bin/mocha/test.setup.js +1 -1
- package/src/bin/nightwatch/command.js +1 -1
- package/src/bin/runner.js +1 -1
- package/src/bin/setup.js +1 -1
- package/src/bin/test-runner/index.js +1 -1
- package/src/bin/test-runner/runTest.js +1 -1
- package/src/bin/test-runner/testWorker.js +1 -1
- package/src/bin/utils/constants.js +1 -1
- package/src/bin/utils/log4jsAppender.js +1 -1
- package/src/bin/utils/logPatcher.js +1 -1
- package/src/bin/utils/logReportingAPI.js +1 -1
- package/src/bin/vanilla-js/command.js +1 -1
- package/src/helpers/BrowserStackSetup.js +1 -1
- package/src/helpers/helper.js +1 -1
- package/src/helpers/logger.js +1 -1
- package/src/helpers/patchHelpers.js +1 -1
- package/src/helpers/request-spy.js +1 -1
- package/src/helpers/setKeepAlive.js +1 -1
- package/src/helpers/w3cMapping.js +1 -1
- package/src/index.js +1 -1
package/browserstack.yml.sample
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
# =============================
|
|
2
2
|
# Set BrowserStack Credentials
|
|
3
3
|
# =============================
|
|
4
|
-
# Add your BrowserStack userName and
|
|
4
|
+
# Add your BrowserStack userName and accessKey here or set BROWSERSTACK_USERNAME and
|
|
5
5
|
# BROWSERSTACK_ACCESS_KEY as env variables
|
|
6
6
|
userName: YOUR_USERNAME
|
|
7
7
|
accessKey: YOUR_ACCESS_KEY
|
|
8
|
+
|
|
8
9
|
# ======================
|
|
9
|
-
#
|
|
10
|
+
# BrowserStack Reporting
|
|
10
11
|
# ======================
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
|
|
14
|
-
# `buildName`
|
|
15
|
-
|
|
16
|
-
#
|
|
17
|
-
#
|
|
18
|
-
|
|
19
|
-
#
|
|
20
|
-
|
|
12
|
+
# The following capabilities are used to set up reporting on BrowserStack:
|
|
13
|
+
# Set 'projectName' to the name of your project. Example, Marketing Website
|
|
14
|
+
projectName: BrowserStack Samples
|
|
15
|
+
# Set `buildName` as the name of the job / testsuite being run
|
|
16
|
+
buildName: browserstack build
|
|
17
|
+
# `buildIdentifier` is a unique id to differentiate every execution that gets appended to
|
|
18
|
+
# buildName. Choose your buildIdentifier format from the available expressions:
|
|
19
|
+
# ${BUILD_NUMBER} (Default): Generates an incremental counter with every execution
|
|
20
|
+
# ${DATE_TIME}: Generates a Timestamp with every execution. Eg. 05-Nov-19:30
|
|
21
|
+
# Read more about buildIdentifiers here -> https://www.browserstack.com/docs/automate/selenium/organize-tests
|
|
22
|
+
buildIdentifier: '#${BUILD_NUMBER}' # Supports strings along with either/both ${expression}
|
|
23
|
+
|
|
21
24
|
# =======================================
|
|
22
25
|
# Platforms (Browsers / Devices to test)
|
|
23
26
|
# =======================================
|
|
@@ -26,18 +29,16 @@ projectName: BrowserStack Samples
|
|
|
26
29
|
platforms:
|
|
27
30
|
- os: OS X
|
|
28
31
|
osVersion: Big Sur
|
|
29
|
-
|
|
32
|
+
browserName: Chrome
|
|
30
33
|
browserVersion: latest
|
|
31
34
|
- os: Windows
|
|
32
35
|
osVersion: 10
|
|
33
|
-
|
|
36
|
+
browserName: Edge
|
|
34
37
|
browserVersion: latest
|
|
35
|
-
-
|
|
36
|
-
browserName: Safari
|
|
37
|
-
osVersion: 15
|
|
38
|
-
- device: Samsung Galaxy S22 Ultra
|
|
38
|
+
- deviceName: Samsung Galaxy S22 Ultra
|
|
39
39
|
browserName: chrome # Try 'samsung' for Samsung browser
|
|
40
40
|
osVersion: 12.0
|
|
41
|
+
|
|
41
42
|
# =======================
|
|
42
43
|
# Parallels per Platform
|
|
43
44
|
# =======================
|
|
@@ -48,6 +49,7 @@ platforms:
|
|
|
48
49
|
#
|
|
49
50
|
# Example 2 - If you have configured 1 platform and set `parallelsPerPlatform` as 5, a total of 5 (1 * 5) parallel threads will be used on BrowserStack
|
|
50
51
|
parallelsPerPlatform: 1
|
|
52
|
+
|
|
51
53
|
# ==========================================
|
|
52
54
|
# BrowserStack Local
|
|
53
55
|
# (For localhost, staging/private websites)
|
|
@@ -59,7 +61,8 @@ browserstackLocal: true # <boolean> (Default false)
|
|
|
59
61
|
# Options to be passed to BrowserStack local in-case of advanced configurations
|
|
60
62
|
# localIdentifier: # <string> (Default: null) Needed if you need to run multiple instances of local.
|
|
61
63
|
# forceLocal: true # <boolean> (Default: false) Set to true if you need to resolve all your traffic via BrowserStack Local tunnel.
|
|
62
|
-
# Entire list of arguments
|
|
64
|
+
# Entire list of arguments available here -> https://www.browserstack.com/docs/automate/selenium/manage-incoming-connections
|
|
65
|
+
|
|
63
66
|
# ===================
|
|
64
67
|
# Debugging features
|
|
65
68
|
# ===================
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"browserstack-node-sdk","version":"1.
|
|
1
|
+
{"name":"browserstack-node-sdk","version":"1.4.0","private":false,"description":"Node SDK for browserstack selenium-webdriver tests","main":"./src/index.js","scripts":{},"author":"BrowserStack","license":"SEE LICENSE IN LICENSE.md","bin":{"browserstack-node-sdk":"./src/bin/runner.js","setup":"./src/bin/setup.js"},"dependencies":{"browserstack-local":"^1.5.0","chalk":"^4.1.2","cheerio":"^1.0.0-rc.11","emittery":"^0.11.0","git-last-commit":"^1.0.1","git-repo-info":"^2.1.1","gitconfiglocal":"^2.1.0","jest-worker":"^28.1.0","js-yaml":"^4.1.0","mocha-multi-reporters":"^1.5.1","monkeypatch":"^1.0.0","request":"^2.88.2","throat":"^6.0.1","uuid":"^8.3.2","winston":"^3.8.2","winston-transport":"^4.5.0","yargs":"^17.5.1"},"devDependencies":{}}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
'use strict';const a0_0x2a2029=a0_0x1368;(function(_0x153d4b,_0xfed921){const _0x3c4668=a0_0x1368,_0x3b33d5=_0x153d4b();while(!![]){try{const _0x1169ef=-parseInt(_0x3c4668(0x241))/0x1+-parseInt(_0x3c4668(0x24a))/0x2*(parseInt(_0x3c4668(0x21f))/0x3)+-parseInt(_0x3c4668(0x1ff))/0x4*(parseInt(_0x3c4668(0x24e))/0x5)+parseInt(_0x3c4668(0x213))/0x6+parseInt(_0x3c4668(0x249))/0x7*(-parseInt(_0x3c4668(0x26f))/0x8)+parseInt(_0x3c4668(0x1ee))/0x9*(parseInt(_0x3c4668(0x262))/0xa)+-parseInt(_0x3c4668(0x223))/0xb*(-parseInt(_0x3c4668(0x1f9))/0xc);if(_0x1169ef===_0xfed921)break;else _0x3b33d5['push'](_0x3b33d5['shift']());}catch(_0x3f4fec){_0x3b33d5['push'](_0x3b33d5['shift']());}}}(a0_0xb6d7,0xba996));function a0_0x1368(_0x602b3f,_0x1a5f6d){const _0xb6d7f2=a0_0xb6d7();return a0_0x1368=function(_0x136839,_0x561a99){_0x136839=_0x136839-0x1ec;let _0xe51a38=_0xb6d7f2[_0x136839];return _0xe51a38;},a0_0x1368(_0x602b3f,_0x1a5f6d);}const fs=require('fs'),path=require('path'),logger=require('../../helpers/logger')[a0_0x2a2029(0x1f3)],{default:BrowserStackSetup}=require(a0_0x2a2029(0x24f)),helper=require(a0_0x2a2029(0x271)),constants=require(a0_0x2a2029(0x255)),{parallelCucumberRun}=require(a0_0x2a2029(0x242)),chalk=require('chalk');function a0_0xb6d7(){const _0x2a47f4=['vNhhg','stepsUndefined','okajb','\x20undefined','oCzgC','\x20ambiguous','\x20steps','processSuccess','876345KpgAhI','../test-runner','GyaMI','tcssh','quAxD','mergeOutputFiles','VmxPj','bwCbP','157360RFARqP','14SEnEsf','syaPD','ihQhN','push','3655ERoTvE','../../helpers/BrowserStackSetup','OdGUa','\x20passed','debug','TlwAt','pVFrp','../utils/constants','hJYxA','stepsUnknown','BRgVr','iONZq','cyan','ahzoV','NoIpF','PUwFM','ZfcTu','wwNUR','gGYbL','BecyV','20FPdnDk','XuOBP','then','LYMXl','zFnqI','TQkEj','\x20scenarios','splice','Qxmsf','modifyBrowserStackCaps','yellow','oTadj','removeDir','32RHOgSR','rtwoy','../../helpers/helper','IPLXD','tqXsr','1316178zEBgMh','ZRoSs','proxySettings','mxbAL','cucumber','winstonLogger','\x20failed','****\x20RESULTS\x20****','GEAuL','modifyBrowserStackW3CCaps','JvKmD','16448412stBxwj','jvtfV','qbqcQ','ZciKv','wEeaB','XTnja','3176cLApWd','ayjjr','JhnzC','green','red','rQMes','argv','xfWgN','oIRpj','sNENi','hubUrl','cSjph','parseFormatters','\x20skipped','bKIBG','stepsAmbiguous','join','Ivwoj','stepsPassed','length','5708490fOKGLr','EBtze','stepsSkipped','ZTPUi','DcjyY','createDir','EsLWK','rrUQI','bsRhb','exitCode','server','TkzPZ','130119LZmaJi','maxWorkers','stepsFailed','forEach','11RjryTL','parallelsPerPlatform','config','bold','bgWhite','scenariosFailed','Ptusb','ltkDR','log','MPCfY','yRIoh','steps','LQLGy','pfSWB','irLsY','oGsyk','getPlatformName','nJLGP','nZXoG','SBtsm','tWgQd','\x20pending'];a0_0xb6d7=function(){return _0x2a47f4;};return a0_0xb6d7();}function printCucumberStats(_0x5e63fb){const _0x2cc113=a0_0x2a2029,_0x3f6b7b={'ZRoSs':'Generating\x20consolidated\x20report...','vNhhg':'Removing\x20tmp\x20directory\x20created\x20for\x20reports','MPCfY':_0x2cc113(0x1f2),'jvtfV':function(_0x4abfd2,_0x3a6013){return _0x4abfd2(_0x3a6013);},'rtwoy':function(_0x399625,_0x4b5591){return _0x399625>_0x4b5591;},'LQLGy':function(_0x17ba60,_0x388665){return _0x17ba60===_0x388665;},'tqXsr':'krngw','iONZq':'YqYGZ','VmxPj':function(_0x25dd51,_0x17b535){return _0x25dd51-_0x17b535;},'EsLWK':function(_0x505fd2,_0x462c2d){return _0x505fd2-_0x462c2d;},'ihQhN':function(_0x59da7d,_0x3ea349){return _0x59da7d>_0x3ea349;},'oIRpj':function(_0x8cbe71,_0x5b508c){return _0x8cbe71===_0x5b508c;},'tcssh':_0x2cc113(0x248),'ZciKv':_0x2cc113(0x20a),'pfSWB':function(_0x397630,_0x5004c4){return _0x397630>_0x5004c4;},'oTadj':function(_0x4cf48e,_0x440d45){return _0x4cf48e>_0x440d45;},'bsRhb':function(_0x4af0d8,_0x56e5e8){return _0x4af0d8===_0x56e5e8;},'tWgQd':_0x2cc113(0x206),'BecyV':function(_0x56e365,_0x4a03c6){return _0x56e365>_0x4a03c6;},'JhnzC':_0x2cc113(0x214),'okajb':'QXAvr','ulCfM':function(_0x5f94be,_0x26649e){return _0x5f94be>_0x26649e;},'ZTPUi':_0x2cc113(0x22d),'syaPD':'qmhEZ','DcjyY':_0x2cc113(0x25c),'ZfcTu':function(_0x119103,_0x8300c4){return _0x119103>_0x8300c4;},'IPLXD':function(_0x419bb8,_0x16f38f){return _0x419bb8!==_0x16f38f;},'XuOBP':_0x2cc113(0x23d),'wwNUR':_0x2cc113(0x1f6),'lxVoM':function(_0x88741,_0x36a7e5){return _0x88741>_0x36a7e5;},'TkzPZ':_0x2cc113(0x245),'GwwDZ':_0x2cc113(0x256),'cMEoz':_0x2cc113(0x231),'ayjjr':'VhUyN','mUDJa':function(_0x12ba59,_0x1905ff){return _0x12ba59>_0x1905ff;},'sbdbl':function(_0x168c7f,_0x9e8a85){return _0x168c7f!==_0x9e8a85;},'rrUQI':_0x2cc113(0x1fb),'TQkEj':'XBZnW','Fnyxz':function(_0x4c70a6,_0x2fe130){return _0x4c70a6+_0x2fe130;},'IyCox':function(_0x41c064,_0x560802){return _0x41c064+_0x560802;},'wEeaB':function(_0x9405dc,_0x29c734){return _0x9405dc+_0x29c734;},'ltkDR':function(_0x43b67f,_0x45f3d4){return _0x43b67f+_0x45f3d4;},'PUwFM':function(_0x36b40d,_0x2f0b8c){return _0x36b40d+_0x2f0b8c;},'wJLeE':function(_0x749371,_0xddc699){return _0x749371+_0xddc699;},'gGYbL':function(_0x45b3d3,_0x9bb6d4){return _0x45b3d3==_0x9bb6d4;},'LYMXl':_0x2cc113(0x208),'XTnja':_0x2cc113(0x1f5)};let _0x525719=0x0;if(_0x3f6b7b[_0x2cc113(0x260)](_0x5e63fb[_0x2cc113(0x212)],0x0))return _0x525719;return console[_0x2cc113(0x22b)](chalk[_0x2cc113(0x226)][_0x2cc113(0x227)](_0x3f6b7b[_0x2cc113(0x1fe)])),_0x5e63fb[_0x2cc113(0x222)](_0x866224=>{const _0xf2e9c1=_0x2cc113,_0x43e731={'ahzoV':_0x3f6b7b[_0xf2e9c1(0x22c)],'JvKmD':function(_0x4cb0f7,_0x53b464){const _0x13a302=_0xf2e9c1;return _0x3f6b7b[_0x13a302(0x1fa)](_0x4cb0f7,_0x53b464);},'zFnqI':function(_0x1f9b64,_0x2b19ae){const _0x5c14fd=_0xf2e9c1;return _0x3f6b7b[_0x5c14fd(0x270)](_0x1f9b64,_0x2b19ae);},'SBtsm':_0x3f6b7b[_0xf2e9c1(0x1ef)],'Qxmsf':_0x3f6b7b[_0xf2e9c1(0x239)]};if(_0x3f6b7b[_0xf2e9c1(0x22f)](_0x3f6b7b[_0xf2e9c1(0x1ed)],_0x3f6b7b[_0xf2e9c1(0x259)]))_0x541e6d[_0xf2e9c1(0x24d)](''+_0x485182[_0xf2e9c1(0x226)][_0xf2e9c1(0x26c)](_0x49e70f+_0xf2e9c1(0x20c)));else{let _0x2f3543=_0x866224[0x0],_0x22ce5c=_0x866224[0x1];console[_0xf2e9c1(0x22b)]('\x0a'+chalk[_0xf2e9c1(0x226)][_0xf2e9c1(0x26c)](''+helper[_0xf2e9c1(0x233)](_0x2f3543)));let _0x287e76=_0x22ce5c['scenarios'],_0x2eb377=_0x22ce5c[_0xf2e9c1(0x22e)],_0x1f4892=_0x22ce5c[_0xf2e9c1(0x228)],_0x328193=_0x22ce5c[_0xf2e9c1(0x221)],_0x68d857=_0x22ce5c[_0xf2e9c1(0x211)],_0x582af4=_0x22ce5c[_0xf2e9c1(0x215)],_0x4b2392=_0x22ce5c['stepsPending'],_0x1e3782=_0x22ce5c[_0xf2e9c1(0x23a)],_0x2a8a60=_0x22ce5c[_0xf2e9c1(0x257)],_0x2237dd=_0x22ce5c[_0xf2e9c1(0x20e)],_0x57cb8b=_0x22ce5c[_0xf2e9c1(0x240)],_0x5821e2=_0x287e76+_0xf2e9c1(0x268);const _0x39eb32=_0x3f6b7b['rtwoy'](_0x3f6b7b[_0xf2e9c1(0x247)](_0x287e76,_0x1f4892),0x0)?_0x3f6b7b[_0xf2e9c1(0x219)](_0x287e76,_0x1f4892):0x0;if(_0x3f6b7b[_0xf2e9c1(0x270)](_0x1f4892,0x0)&&_0x3f6b7b[_0xf2e9c1(0x24c)](_0x39eb32,0x0))_0x3f6b7b[_0xf2e9c1(0x207)](_0x3f6b7b[_0xf2e9c1(0x244)],_0x3f6b7b[_0xf2e9c1(0x1fc)])?_0x538db5[_0xf2e9c1(0x24d)](''+_0x36b9a3[_0xf2e9c1(0x226)][_0xf2e9c1(0x202)](_0x2491e4+_0xf2e9c1(0x251))):_0x5821e2+='\x20('+chalk['bold'][_0xf2e9c1(0x203)](_0x1f4892+_0xf2e9c1(0x1f4))+',\x20'+chalk[_0xf2e9c1(0x226)]['green'](_0x39eb32+_0xf2e9c1(0x251))+')';else(_0x3f6b7b[_0xf2e9c1(0x230)](_0x1f4892,0x0)||_0x3f6b7b[_0xf2e9c1(0x26d)](_0x39eb32,0x0))&&(_0x3f6b7b[_0xf2e9c1(0x21b)](_0x3f6b7b[_0xf2e9c1(0x237)],_0x3f6b7b[_0xf2e9c1(0x237)])?_0x5821e2+=_0x3f6b7b[_0xf2e9c1(0x261)](_0x1f4892,0x0)?'\x20('+chalk['bold']['red'](_0x1f4892+_0xf2e9c1(0x1f4))+')':'\x20('+chalk['bold'][_0xf2e9c1(0x202)](_0x39eb32+_0xf2e9c1(0x251))+')':_0x1eb981[_0xf2e9c1(0x24d)](''+_0x54c955['bold'][_0xf2e9c1(0x25a)](_0x2a3eb4+_0xf2e9c1(0x20c))));let _0x353d08=_0x2eb377+_0xf2e9c1(0x23f),_0x48b0b8=[];if(_0x3f6b7b['ihQhN'](_0x2237dd,0x0)){if(_0x3f6b7b['LQLGy'](_0x3f6b7b[_0xf2e9c1(0x201)],_0x3f6b7b[_0xf2e9c1(0x23b)])){if(_0x4b75de)_0x32e045[_0xf2e9c1(0x24d)](_0x2a6552[_0xf2e9c1(0x1f7)](_0x1b99bb[_0xf2e9c1(0x225)],_0x43e731[_0xf2e9c1(0x25b)],_0xc2a978));else _0x472fb0['push'](_0x3489f4[_0xf2e9c1(0x26b)](_0x2c2759[_0xf2e9c1(0x225)],_0x43e731['ahzoV'],_0x11c020));}else _0x48b0b8[_0xf2e9c1(0x24d)](''+chalk['bold'][_0xf2e9c1(0x203)](_0x2237dd+'\x20ambiguous'));}_0x3f6b7b['ulCfM'](_0x328193,0x0)&&(_0x3f6b7b[_0xf2e9c1(0x22f)](_0x3f6b7b['ZTPUi'],_0x3f6b7b[_0xf2e9c1(0x216)])?_0x48b0b8['push'](''+chalk[_0xf2e9c1(0x226)][_0xf2e9c1(0x203)](_0x328193+_0xf2e9c1(0x1f4))):(_0x4de2e2[_0xf2e9c1(0x252)](_0x3f6b7b[_0xf2e9c1(0x1ef)]),_0x1ed78a[_0xf2e9c1(0x246)](_0x5e7f67,_0x365bda),_0x15d2da[_0xf2e9c1(0x252)](_0x3f6b7b[_0xf2e9c1(0x239)]),_0x27915b[_0xf2e9c1(0x26e)](_0x513b6a)));if(_0x3f6b7b[_0xf2e9c1(0x270)](_0x68d857,0x0)){if(_0x3f6b7b[_0xf2e9c1(0x22f)](_0x3f6b7b[_0xf2e9c1(0x24b)],_0x3f6b7b[_0xf2e9c1(0x217)])){let _0x1edecd=_0x43e731[_0xf2e9c1(0x1f8)](_0x2bb6fc,_0x185177);_0x22596f[_0xf2e9c1(0x21c)]=_0x1edecd,_0x43e731[_0xf2e9c1(0x266)](_0x46d66e['length'],0x0)&&(_0x32c6ba[_0xf2e9c1(0x252)](_0x43e731[_0xf2e9c1(0x236)]),_0x2057a7[_0xf2e9c1(0x246)](_0x2ac993,_0x55fbc4),_0x32f7f4[_0xf2e9c1(0x252)](_0x43e731[_0xf2e9c1(0x26a)]),_0x52e20b[_0xf2e9c1(0x26e)](_0x4ddb3a));}else _0x48b0b8[_0xf2e9c1(0x24d)](''+chalk[_0xf2e9c1(0x226)][_0xf2e9c1(0x202)](_0x68d857+_0xf2e9c1(0x251)));}_0x3f6b7b['ZfcTu'](_0x4b2392,0x0)&&(_0x3f6b7b[_0xf2e9c1(0x1ec)](_0x3f6b7b[_0xf2e9c1(0x263)],_0x3f6b7b[_0xf2e9c1(0x25f)])?_0x48b0b8[_0xf2e9c1(0x24d)](''+chalk['bold'][_0xf2e9c1(0x26c)](_0x4b2392+_0xf2e9c1(0x238))):_0x5b9bf8[_0xf2e9c1(0x24d)](''+_0x52885d['bold'][_0xf2e9c1(0x26c)](_0x55fbeb+_0xf2e9c1(0x23c))));_0x3f6b7b['lxVoM'](_0x582af4,0x0)&&(_0x3f6b7b[_0xf2e9c1(0x21b)](_0x3f6b7b[_0xf2e9c1(0x21e)],_0x3f6b7b['GwwDZ'])?_0x367ae0[_0xf2e9c1(0x24d)](''+_0x54e02b['bold']['red'](_0x544ed5+_0xf2e9c1(0x1f4))):_0x48b0b8['push'](''+chalk[_0xf2e9c1(0x226)][_0xf2e9c1(0x25a)](_0x582af4+_0xf2e9c1(0x20c))));_0x3f6b7b[_0xf2e9c1(0x25e)](_0x1e3782,0x0)&&(_0x3f6b7b[_0xf2e9c1(0x21b)](_0x3f6b7b['cMEoz'],_0x3f6b7b[_0xf2e9c1(0x200)])?_0x54535d=0x1:_0x48b0b8[_0xf2e9c1(0x24d)](''+chalk[_0xf2e9c1(0x226)]['yellow'](_0x1e3782+_0xf2e9c1(0x23c))));_0x3f6b7b['mUDJa'](_0x2a8a60,0x0)&&(_0x3f6b7b['sbdbl'](_0x3f6b7b[_0xf2e9c1(0x21a)],_0x3f6b7b[_0xf2e9c1(0x267)])?_0x48b0b8[_0xf2e9c1(0x24d)](''+chalk[_0xf2e9c1(0x226)][_0xf2e9c1(0x26c)](_0x2a8a60+_0xf2e9c1(0x20c))):_0x383291[_0xf2e9c1(0x269)](_0x24afee[_0x38f9b3],0x2));const _0x399dfb=_0x3f6b7b['Fnyxz'](_0x3f6b7b['IyCox'](_0x3f6b7b[_0xf2e9c1(0x1fd)](_0x353d08,'('),_0x48b0b8['join'](',\x20')),')');console['log'](_0x3f6b7b[_0xf2e9c1(0x22a)](_0x3f6b7b[_0xf2e9c1(0x25d)](_0x3f6b7b['PUwFM'](_0x3f6b7b['wJLeE']('\x0a',_0x5821e2),'\x0a'),_0x399dfb),'\x0a')),_0x3f6b7b[_0xf2e9c1(0x260)](_0x57cb8b,![])&&(_0x3f6b7b[_0xf2e9c1(0x1ec)](_0x3f6b7b[_0xf2e9c1(0x265)],_0x3f6b7b['LYMXl'])?_0x274dc8[_0xf2e9c1(0x24d)](''+_0x4890ec[_0xf2e9c1(0x226)]['yellow'](_0x5c51f5+_0xf2e9c1(0x238))):_0x525719=0x1);}}),_0x525719;}function run(_0x235e07,_0x228777){const _0x3b4a6a=a0_0x2a2029,_0x5aab76={'JbWZq':function(_0x45be58,_0x4501d5){return _0x45be58>_0x4501d5;},'nJLGP':function(_0x25cb3a,_0x49c080){return _0x25cb3a!==_0x49c080;},'Ptusb':'XLwpb','pVFrp':_0x3b4a6a(0x1f2),'nZXoG':function(_0x343ed1,_0x23a1ab){return _0x343ed1-_0x23a1ab;},'lSZpI':function(_0x3e678e,_0xd7451c){return _0x3e678e>=_0xd7451c;},'GyaMI':function(_0x598606,_0x4c322c){return _0x598606(_0x4c322c);},'rQMes':function(_0x31f024,_0x4a3615){return _0x31f024>_0x4a3615;},'LcUnd':function(_0x507361,_0x385c03){return _0x507361===_0x385c03;},'mxbAL':_0x3b4a6a(0x258),'OdGUa':'Generating\x20consolidated\x20report...','IGyWw':'Removing\x20tmp\x20directory\x20created\x20for\x20reports','TlwAt':'tmp','oGsyk':function(_0x5f42ff,_0x416eac){return _0x5f42ff===_0x416eac;},'pyVvu':'kXMkU','bKIBG':function(_0x3ae3c8,_0x23d00a){return _0x3ae3c8>=_0x23d00a;},'VaMWm':_0x3b4a6a(0x210),'bDsQS':function(_0x550cbe,_0x432243,_0x34a0b0,_0x2f9586,_0x566fe6,_0x49bf7c){return _0x550cbe(_0x432243,_0x34a0b0,_0x2f9586,_0x566fe6,_0x49bf7c);}},_0x3d49a3=new BrowserStackSetup(),_0x506afc=[];if(!_0x3d49a3[_0x3b4a6a(0x225)])return;const _0x379fe1=_0x3d49a3['config'][_0x3b4a6a(0x224)];let _0x347624=helper['useW3C'](_0x3d49a3[_0x3b4a6a(0x225)]);_0x3d49a3[_0x3b4a6a(0x225)]['platforms']['forEach']((_0xa6cec9,_0x13a6bf)=>{const _0x39e836=_0x3b4a6a;if(_0x5aab76[_0x39e836(0x234)](_0x5aab76[_0x39e836(0x229)],_0x5aab76['Ptusb']))_0x56e5a5+=_0x5aab76['JbWZq'](_0x176b8d,0x0)?'\x20('+_0xb679fa[_0x39e836(0x226)][_0x39e836(0x203)](_0xe2eb67+_0x39e836(0x1f4))+')':'\x20('+_0x1bf318[_0x39e836(0x226)][_0x39e836(0x202)](_0x40fb0f+'\x20passed')+')';else{if(_0x347624)_0x506afc[_0x39e836(0x24d)](helper[_0x39e836(0x1f7)](_0x3d49a3[_0x39e836(0x225)],_0x5aab76[_0x39e836(0x254)],_0x13a6bf));else _0x506afc['push'](helper[_0x39e836(0x26b)](_0x3d49a3[_0x39e836(0x225)],_0x5aab76[_0x39e836(0x254)],_0x13a6bf));}});const _0x1da821={};_0x1da821[_0x3b4a6a(0x21d)]=constants[_0x3b4a6a(0x209)],_0x1da821['proxySettings']=_0x3d49a3[_0x3b4a6a(0x225)][_0x3b4a6a(0x1f0)],_0x1da821[_0x3b4a6a(0x220)]=_0x379fe1;let _0x1e4524=_0x1da821,_0x4c6214=process[_0x3b4a6a(0x205)],[_0x2a3f27,_0x26c557]=helper[_0x3b4a6a(0x20b)](_0x4c6214),_0x247e19=path[_0x3b4a6a(0x20f)](process['cwd'](),_0x5aab76[_0x3b4a6a(0x253)]);if(_0x5aab76[_0x3b4a6a(0x204)](_0x26c557[_0x3b4a6a(0x212)],0x0)){if(_0x5aab76[_0x3b4a6a(0x232)](_0x5aab76['pyVvu'],_0x5aab76['pyVvu'])){helper[_0x3b4a6a(0x218)](_0x247e19);for(let _0x264b81=_0x5aab76[_0x3b4a6a(0x235)](_0x2a3f27[_0x3b4a6a(0x212)],0x1);_0x5aab76[_0x3b4a6a(0x20d)](_0x264b81,0x0);_0x264b81--){if(_0x5aab76[_0x3b4a6a(0x232)](_0x5aab76['VaMWm'],_0x5aab76['VaMWm']))_0x4c6214['splice'](_0x2a3f27[_0x264b81],0x2);else{_0xc765c3['createDir'](_0x586072);for(let _0x4acde0=_0x5aab76[_0x3b4a6a(0x235)](_0x471c3e['length'],0x1);_0x5aab76['lSZpI'](_0x4acde0,0x0);_0x4acde0--){_0x2300d1[_0x3b4a6a(0x269)](_0x3b67f3[_0x4acde0],0x2);}}}}else _0x4d852e+='\x20('+_0x42121d[_0x3b4a6a(0x226)][_0x3b4a6a(0x203)](_0x5db823+_0x3b4a6a(0x1f4))+',\x20'+_0xc76797[_0x3b4a6a(0x226)][_0x3b4a6a(0x202)](_0x9949e2+'\x20passed')+')';}_0x5aab76['bDsQS'](parallelCucumberRun,_0x506afc,_0x1e4524,_0x3d49a3[_0x3b4a6a(0x225)],_0x4c6214,_0x26c557)[_0x3b4a6a(0x264)](_0x95f105=>{const _0x498c0b=_0x3b4a6a;let _0x1c102d=_0x5aab76[_0x498c0b(0x243)](printCucumberStats,_0x95f105);process[_0x498c0b(0x21c)]=_0x1c102d,_0x5aab76[_0x498c0b(0x204)](_0x26c557[_0x498c0b(0x212)],0x0)&&(_0x5aab76['LcUnd'](_0x5aab76[_0x498c0b(0x1f1)],_0x5aab76['mxbAL'])?(logger[_0x498c0b(0x252)](_0x5aab76[_0x498c0b(0x250)]),helper[_0x498c0b(0x246)](_0x247e19,_0x26c557),logger['debug'](_0x5aab76['IGyWw']),helper[_0x498c0b(0x26e)](_0x247e19)):_0x4a0cc6[_0x498c0b(0x24d)](''+_0x1ab963[_0x498c0b(0x226)][_0x498c0b(0x203)](_0x5d4745+_0x498c0b(0x23e))));});}module['exports']=run;
|
|
2
|
+
'use strict';const a0_0xad496e=a0_0x21bf;function a0_0x21bf(_0x291329,_0x9d0ce3){const _0x32bae1=a0_0x32ba();return a0_0x21bf=function(_0x21bf77,_0x341baf){_0x21bf77=_0x21bf77-0xca;let _0xaa6078=_0x32bae1[_0x21bf77];return _0xaa6078;},a0_0x21bf(_0x291329,_0x9d0ce3);}(function(_0x32c5a4,_0xd9a338){const _0x33a971=a0_0x21bf,_0x5b72f7=_0x32c5a4();while(!![]){try{const _0x1e4730=-parseInt(_0x33a971(0xe5))/0x1*(parseInt(_0x33a971(0x13c))/0x2)+-parseInt(_0x33a971(0xcc))/0x3*(-parseInt(_0x33a971(0x108))/0x4)+parseInt(_0x33a971(0xf9))/0x5*(-parseInt(_0x33a971(0xfa))/0x6)+parseInt(_0x33a971(0xf8))/0x7+-parseInt(_0x33a971(0x13f))/0x8+-parseInt(_0x33a971(0xfc))/0x9*(-parseInt(_0x33a971(0xe0))/0xa)+parseInt(_0x33a971(0xf2))/0xb*(parseInt(_0x33a971(0x122))/0xc);if(_0x1e4730===_0xd9a338)break;else _0x5b72f7['push'](_0x5b72f7['shift']());}catch(_0x3c27b5){_0x5b72f7['push'](_0x5b72f7['shift']());}}}(a0_0x32ba,0x64812));function a0_0x32ba(){const _0x53ad2e=['woMGO','exports','jasBR','ORRuV','jFiuY','\x20failed','WVHJL','then','../../helpers/logger','KNxAC','../test-runner','length','wBTep','push','reoIp','FftwS','75424vfnick','debug','tTQRb','6434888gNqBKY','parseFormatters','NvawQ','zJnNW','maxWorkers','aKwGu','DsuON','wEGkI','xWmiV','shXSw','fvXvV','gSwQM','yvhhh','TXIrp','JiXwU','RIvkN','IXIoQ','ILkys','jAOAy','exitCode','green','iNBHb','\x20steps','mergeOutputFiles','xXUdt','dYQSm','RjeOq','stepsPending','1260759qncYJH','yZOyg','dtxzD','Removing\x20tmp\x20directory\x20created\x20for\x20reports','hubUrl','qzehz','stepsUnknown','TjcMr','server','\x20pending','WdaXo','jsJjT','scenarios','config','CHvjK','log','cyan','VkucW','KpjJv','yqSYF','10GHEroJ','sTmLs','MTrfu','forEach','processSuccess','19qtxKYL','kJPOs','Qihal','stepsSkipped','join','BMOWG','hgvOI','SblIa','pMKuA','useW3C','modifyBrowserStackCaps','fprbs','\x20undefined','11xHnjUR','cwd','dbJHO','\x20skipped','cROvJ','YsDWv','3522589ZfPMaj','5AAULDT','1381554vnpOIE','FBsso','1222083wMqCog','cucumber','KHkTY','\x20ambiguous','MAaSR','ZvQaO','scenariosFailed','EeCms','stepsUndefined','pzQUU','path','EZmdn','4RYDhUc','uawNH','removeDir','getPlatformName','BvZYo','TVgAQ','aAgAR','EDree','cmRsN','VBnbs','platforms','../../helpers/helper','qciiH','proxySettings','\x20scenarios','qjsQe','kSlQj','SYhjg','parallelsPerPlatform','createDir','VUPAV','modifyBrowserStackW3CCaps','MQioB','stepsFailed','bold','yellow','13242564XIwuTd','nVhpr','Generating\x20consolidated\x20report...','winstonLogger','\x20passed','red','bTFAe','RCtag','CiHhb','chalk'];a0_0x32ba=function(){return _0x53ad2e;};return a0_0x32ba();}const fs=require('fs'),path=require(a0_0xad496e(0x106)),logger=require(a0_0xad496e(0x134))[a0_0xad496e(0x125)],{default:BrowserStackSetup}=require('../../helpers/BrowserStackSetup'),helper=require(a0_0xad496e(0x113)),constants=require('../utils/constants'),{parallelCucumberRun}=require(a0_0xad496e(0x136)),chalk=require(a0_0xad496e(0x12b));function printCucumberStats(_0x3f6ae4){const _0x429505=a0_0xad496e,_0x2cd526={'YsDWv':_0x429505(0x124),'iNBHb':_0x429505(0xcf),'FBsso':function(_0x261f06,_0x50c1a2){return _0x261f06-_0x50c1a2;},'SYhjg':function(_0x113331,_0x424f61){return _0x113331>=_0x424f61;},'kJPOs':function(_0x34ae25,_0x5746d5){return _0x34ae25>_0x5746d5;},'sTmLs':'cucumber','VBnbs':function(_0x497648,_0x283079){return _0x497648(_0x283079);},'fprbs':function(_0x5b4703,_0x40c6fc){return _0x5b4703>_0x40c6fc;},'TVgAQ':function(_0x1c42bc,_0xd9384){return _0x1c42bc!==_0xd9384;},'reoIp':'vsZhU','ZvQaO':_0x429505(0x135),'CiHhb':function(_0x57bed4,_0x111420){return _0x57bed4>_0x111420;},'BvZYo':function(_0x548a20,_0x4bff69){return _0x548a20===_0x4bff69;},'TXIrp':_0x429505(0xce),'MTrfu':function(_0x198eae,_0x30cd78){return _0x198eae>_0x30cd78;},'aymXu':function(_0x3a1422,_0x18d219){return _0x3a1422===_0x18d219;},'KrJuF':_0x429505(0x132),'ZYbbO':_0x429505(0x13e),'MYIFQ':function(_0x8cbe56,_0x528121){return _0x8cbe56>_0x528121;},'kSlQj':function(_0x131c3c,_0x2a2775){return _0x131c3c===_0x2a2775;},'wBTep':_0x429505(0x14e),'SEXea':_0x429505(0xec),'MAaSR':function(_0x590dbf,_0x17c696){return _0x590dbf>_0x17c696;},'cROvJ':function(_0x2a1928,_0x297aef){return _0x2a1928!==_0x297aef;},'Qihal':'SkVfv','jsJjT':_0x429505(0x14b),'jasBR':function(_0x520ffb,_0x2d2f9c){return _0x520ffb===_0x2d2f9c;},'xWmiV':'zqPlr','JiXwU':_0x429505(0x149),'aKwGu':function(_0x4a7ff1,_0x5110f8){return _0x4a7ff1>_0x5110f8;},'DsuON':_0x429505(0xdf),'cVuks':_0x429505(0x117),'FftwS':'vhFXQ','ORRuV':function(_0x54c65b,_0x3e97e8){return _0x54c65b>_0x3e97e8;},'qciiH':function(_0x2f2218,_0x275a13){return _0x2f2218===_0x275a13;},'dYQSm':_0x429505(0x141),'Nyagu':_0x429505(0xcd),'jFiuY':function(_0x435d70,_0x76b04c){return _0x435d70+_0x76b04c;},'hgvOI':function(_0x168319,_0x46a4d6){return _0x168319+_0x46a4d6;},'BMOWG':function(_0x43efea,_0x38d891){return _0x43efea==_0x38d891;},'EZmdn':_0x429505(0xd6),'woMGO':'PHwVn','KHkTY':function(_0x1dde64,_0x5e892e){return _0x1dde64==_0x5e892e;},'zJnNW':'****\x20RESULTS\x20****'};let _0x5d510c=0x0;if(_0x2cd526[_0x429505(0xfe)](_0x3f6ae4[_0x429505(0x137)],0x0))return _0x5d510c;return console[_0x429505(0xdb)](chalk[_0x429505(0x120)]['bgWhite'](_0x2cd526[_0x429505(0x142)])),_0x3f6ae4[_0x429505(0xe3)](_0x3ebab5=>{const _0x17ce92=_0x429505,_0x435ab9={'gSwQM':_0x2cd526[_0x17ce92(0xe1)],'VUPAV':function(_0x488138,_0x543401){const _0x2aeb7f=_0x17ce92;return _0x2cd526[_0x2aeb7f(0x111)](_0x488138,_0x543401);},'aAgAR':function(_0x3747fb,_0xf4b6a7){const _0x49ee19=_0x17ce92;return _0x2cd526[_0x49ee19(0xf0)](_0x3747fb,_0xf4b6a7);},'VkucW':_0x2cd526['YsDWv'],'jAOAy':_0x2cd526[_0x17ce92(0x154)]};if(_0x2cd526['TVgAQ'](_0x2cd526[_0x17ce92(0x13a)],_0x2cd526[_0x17ce92(0x101)])){let _0x4fa666=_0x3ebab5[0x0],_0x5e26db=_0x3ebab5[0x1];console[_0x17ce92(0xdb)]('\x0a'+chalk['bold'][_0x17ce92(0x121)](''+helper[_0x17ce92(0x10b)](_0x4fa666)));let _0x4b7cb4=_0x5e26db[_0x17ce92(0xd8)],_0x1e4ed3=_0x5e26db['steps'],_0x409b4b=_0x5e26db[_0x17ce92(0x102)],_0x5eabaa=_0x5e26db[_0x17ce92(0x11f)],_0x1c2e0a=_0x5e26db['stepsPassed'],_0x1e9abc=_0x5e26db[_0x17ce92(0xe8)],_0xaf9f2=_0x5e26db[_0x17ce92(0xcb)],_0x397254=_0x5e26db[_0x17ce92(0x104)],_0x5093c1=_0x5e26db[_0x17ce92(0xd2)],_0x18a5c8=_0x5e26db['stepsAmbiguous'],_0x1dda6e=_0x5e26db[_0x17ce92(0xe4)],_0x305367=_0x4b7cb4+_0x17ce92(0x116);const _0x5b8c96=_0x2cd526[_0x17ce92(0xe6)](_0x2cd526['FBsso'](_0x4b7cb4,_0x409b4b),0x0)?_0x2cd526[_0x17ce92(0xfb)](_0x4b7cb4,_0x409b4b):0x0;if(_0x2cd526['fprbs'](_0x409b4b,0x0)&&_0x2cd526['CiHhb'](_0x5b8c96,0x0)){if(_0x2cd526[_0x17ce92(0x10c)](_0x2cd526[_0x17ce92(0x14c)],_0x2cd526[_0x17ce92(0x14c)]))_0x305367+='\x20('+chalk[_0x17ce92(0x120)]['red'](_0x409b4b+_0x17ce92(0x131))+',\x20'+chalk[_0x17ce92(0x120)]['green'](_0x5b8c96+'\x20passed')+')';else{if(_0x4a1c38)_0x268413[_0x17ce92(0x139)](_0xaf0677[_0x17ce92(0x11d)](_0x3bd891[_0x17ce92(0xd9)],_0x435ab9[_0x17ce92(0x14a)],_0x4e0b62));else _0x39ec2d[_0x17ce92(0x139)](_0x2b6bed['modifyBrowserStackCaps'](_0x35c24e[_0x17ce92(0xd9)],_0x435ab9[_0x17ce92(0x14a)],_0x5b572e));}}else(_0x2cd526[_0x17ce92(0xe2)](_0x409b4b,0x0)||_0x2cd526[_0x17ce92(0x12a)](_0x5b8c96,0x0))&&(_0x2cd526['aymXu'](_0x2cd526['KrJuF'],_0x2cd526['ZYbbO'])?_0x191b0a['push'](''+_0x5ae7be[_0x17ce92(0x120)][_0x17ce92(0x121)](_0x573535+_0x17ce92(0xf1))):_0x305367+=_0x2cd526[_0x17ce92(0x12a)](_0x409b4b,0x0)?'\x20('+chalk[_0x17ce92(0x120)]['red'](_0x409b4b+_0x17ce92(0x131))+')':'\x20('+chalk[_0x17ce92(0x120)][_0x17ce92(0x153)](_0x5b8c96+'\x20passed')+')');let _0x4c1ecc=_0x1e4ed3+_0x17ce92(0x155),_0x94e0cd=[];_0x2cd526['MYIFQ'](_0x18a5c8,0x0)&&(_0x2cd526[_0x17ce92(0x118)](_0x2cd526[_0x17ce92(0x138)],_0x2cd526['SEXea'])?_0x12cf96[_0x17ce92(0x139)](''+_0x56e3d4['bold'][_0x17ce92(0x153)](_0x5560b0+_0x17ce92(0x126))):_0x94e0cd['push'](''+chalk[_0x17ce92(0x120)][_0x17ce92(0x127)](_0x18a5c8+'\x20ambiguous')));_0x2cd526[_0x17ce92(0x100)](_0x5eabaa,0x0)&&(_0x2cd526['cROvJ'](_0x2cd526[_0x17ce92(0xe7)],_0x2cd526[_0x17ce92(0xd7)])?_0x94e0cd[_0x17ce92(0x139)](''+chalk['bold']['red'](_0x5eabaa+_0x17ce92(0x131))):(_0x5b4b86[_0x17ce92(0x13d)](_0x2cd526[_0x17ce92(0xf7)]),_0x189f74['mergeOutputFiles'](_0x473bf2,_0x5cb3d2),_0x173084[_0x17ce92(0x13d)](_0x2cd526[_0x17ce92(0x154)]),_0x54188d[_0x17ce92(0x10a)](_0x447446)));_0x2cd526['CiHhb'](_0x1c2e0a,0x0)&&(_0x2cd526['jasBR'](_0x2cd526[_0x17ce92(0x147)],_0x2cd526[_0x17ce92(0x14d)])?_0x1b16e6+='\x20('+_0x584b94[_0x17ce92(0x120)]['red'](_0xdca524+_0x17ce92(0x131))+',\x20'+_0x1195dc[_0x17ce92(0x120)][_0x17ce92(0x153)](_0x21476b+_0x17ce92(0x126))+')':_0x94e0cd['push'](''+chalk[_0x17ce92(0x120)]['green'](_0x1c2e0a+_0x17ce92(0x126))));if(_0x2cd526[_0x17ce92(0x144)](_0xaf9f2,0x0)){if(_0x2cd526[_0x17ce92(0x10d)](_0x2cd526[_0x17ce92(0x145)],_0x2cd526[_0x17ce92(0x145)])){_0x3bf15a[_0x17ce92(0x11b)](_0x4e8faf);for(let _0x7d6306=_0x2cd526[_0x17ce92(0xfb)](_0x40b8dd['length'],0x1);_0x2cd526[_0x17ce92(0x119)](_0x7d6306,0x0);_0x7d6306--){_0x48051d['splice'](_0x26be42[_0x7d6306],0x2);}}else _0x94e0cd[_0x17ce92(0x139)](''+chalk[_0x17ce92(0x120)]['yellow'](_0xaf9f2+'\x20pending'));}_0x2cd526['kJPOs'](_0x1e9abc,0x0)&&(_0x2cd526[_0x17ce92(0x12e)](_0x2cd526['cVuks'],_0x2cd526['cVuks'])?_0x94e0cd[_0x17ce92(0x139)](''+chalk['bold']['cyan'](_0x1e9abc+_0x17ce92(0xf5))):_0x496646=0x1);if(_0x2cd526['MAaSR'](_0x397254,0x0)){if(_0x2cd526[_0x17ce92(0xf6)](_0x2cd526['FftwS'],_0x2cd526[_0x17ce92(0x13b)])){let _0x4a798d=_0x435ab9[_0x17ce92(0x11c)](_0x696daf,_0x1925fe);_0x3445b9[_0x17ce92(0x152)]=_0x4a798d,_0x435ab9[_0x17ce92(0x10e)](_0x26181e[_0x17ce92(0x137)],0x0)&&(_0x1b1eff['debug'](_0x435ab9[_0x17ce92(0xdd)]),_0x2e1faf[_0x17ce92(0x156)](_0x177c16,_0x1b1991),_0x1e73e2[_0x17ce92(0x13d)](_0x435ab9[_0x17ce92(0x151)]),_0x1a14d7['removeDir'](_0x25279d));}else _0x94e0cd['push'](''+chalk[_0x17ce92(0x120)]['yellow'](_0x397254+_0x17ce92(0xf1)));}_0x2cd526[_0x17ce92(0x12f)](_0x5093c1,0x0)&&(_0x2cd526['qciiH'](_0x2cd526[_0x17ce92(0x158)],_0x2cd526['Nyagu'])?_0x24f85d+=_0x2cd526['kJPOs'](_0xa65098,0x0)?'\x20('+_0x83eec0[_0x17ce92(0x120)][_0x17ce92(0x127)](_0x94fef0+_0x17ce92(0x131))+')':'\x20('+_0xa9dbda[_0x17ce92(0x120)][_0x17ce92(0x153)](_0x3bc1b9+_0x17ce92(0x126))+')':_0x94e0cd[_0x17ce92(0x139)](''+chalk[_0x17ce92(0x120)][_0x17ce92(0x121)](_0x5093c1+'\x20skipped')));const _0x290a9d=_0x2cd526[_0x17ce92(0x130)](_0x2cd526[_0x17ce92(0x130)](_0x2cd526[_0x17ce92(0x130)](_0x4c1ecc,'('),_0x94e0cd[_0x17ce92(0xe9)](',\x20')),')');console['log'](_0x2cd526[_0x17ce92(0x130)](_0x2cd526[_0x17ce92(0x130)](_0x2cd526[_0x17ce92(0x130)](_0x2cd526[_0x17ce92(0xeb)]('\x0a',_0x305367),'\x0a'),_0x290a9d),'\x0a')),_0x2cd526[_0x17ce92(0xea)](_0x1dda6e,![])&&(_0x2cd526[_0x17ce92(0x114)](_0x2cd526[_0x17ce92(0x107)],_0x2cd526[_0x17ce92(0x12c)])?_0x1e547a['push'](''+_0x4f7ca2[_0x17ce92(0x120)][_0x17ce92(0x121)](_0x14ef90+'\x20skipped')):_0x5d510c=0x1);}else _0x410b47[_0x17ce92(0x139)](''+_0x2cc986['bold'][_0x17ce92(0x121)](_0x556596+_0x17ce92(0xd5)));}),_0x5d510c;}function run(_0x2e35af,_0x5adaca){const _0x38c74f=a0_0xad496e,_0x1425ca={'xwFRj':function(_0x5cda31,_0x4efaaa){return _0x5cda31!==_0x4efaaa;},'CHvjK':_0x38c74f(0x103),'pMKuA':_0x38c74f(0xfd),'nVhpr':function(_0x396bc8,_0xd25d50){return _0x396bc8(_0xd25d50);},'shXSw':function(_0x37dd24,_0x298bd7){return _0x37dd24>_0x298bd7;},'EDree':_0x38c74f(0x109),'yCZRp':'JSneZ','qzehz':_0x38c74f(0x124),'dbJHO':_0x38c74f(0xcf),'RCtag':'tmp','pzQUU':function(_0x379a4f,_0x4ac7f7){return _0x379a4f>_0x4ac7f7;},'MQioB':function(_0x143750,_0x3bdf15){return _0x143750===_0x3bdf15;},'KpjJv':'mzWOJ','FjenM':_0x38c74f(0xd3),'cmRsN':function(_0x54599d,_0x508203){return _0x54599d-_0x508203;},'IXIoQ':function(_0x4e661b,_0x126e38){return _0x4e661b>=_0x126e38;},'xXUdt':_0x38c74f(0x150),'bTFAe':_0x38c74f(0xca),'wEGkI':function(_0x262b2f,_0x5e89ba,_0x38cd35,_0x57bae8,_0x1ba6d7,_0x4825b0){return _0x262b2f(_0x5e89ba,_0x38cd35,_0x57bae8,_0x1ba6d7,_0x4825b0);}},_0x1545d1=new BrowserStackSetup(),_0x15bdb4=[];if(!_0x1545d1[_0x38c74f(0xd9)])return;const _0x104204=_0x1545d1[_0x38c74f(0xd9)][_0x38c74f(0x11a)];let _0x4d845a=helper[_0x38c74f(0xee)](_0x1545d1[_0x38c74f(0xd9)]);_0x1545d1['config'][_0x38c74f(0x112)][_0x38c74f(0xe3)]((_0x282bbe,_0x8d5223)=>{const _0x3cc92a=_0x38c74f;if(_0x1425ca['xwFRj'](_0x1425ca['CHvjK'],_0x1425ca[_0x3cc92a(0xda)]))_0x2f1b1e['push'](''+_0x431b4[_0x3cc92a(0x120)][_0x3cc92a(0xdc)](_0x375228+'\x20skipped'));else{if(_0x4d845a)_0x15bdb4['push'](helper[_0x3cc92a(0x11d)](_0x1545d1[_0x3cc92a(0xd9)],_0x1425ca[_0x3cc92a(0xed)],_0x8d5223));else _0x15bdb4[_0x3cc92a(0x139)](helper[_0x3cc92a(0xef)](_0x1545d1[_0x3cc92a(0xd9)],_0x1425ca[_0x3cc92a(0xed)],_0x8d5223));}});const _0x1e4dc7={};_0x1e4dc7[_0x38c74f(0xd4)]=constants[_0x38c74f(0xd0)],_0x1e4dc7[_0x38c74f(0x115)]=_0x1545d1[_0x38c74f(0xd9)][_0x38c74f(0x115)],_0x1e4dc7[_0x38c74f(0x143)]=_0x104204;let _0x3f998b=_0x1e4dc7,_0x5408db=process['argv'],[_0x2b2fd8,_0x587407]=helper[_0x38c74f(0x140)](_0x5408db),_0xa06d0d=path[_0x38c74f(0xe9)](process[_0x38c74f(0xf3)](),_0x1425ca[_0x38c74f(0x129)]);if(_0x1425ca[_0x38c74f(0x105)](_0x587407[_0x38c74f(0x137)],0x0)){if(_0x1425ca['MQioB'](_0x1425ca[_0x38c74f(0xde)],_0x1425ca['FjenM']))_0x4782da[_0x38c74f(0x139)](''+_0x52093b[_0x38c74f(0x120)][_0x38c74f(0x127)](_0x4c6fbd+_0x38c74f(0xff)));else{helper[_0x38c74f(0x11b)](_0xa06d0d);for(let _0x66bc49=_0x1425ca[_0x38c74f(0x110)](_0x2b2fd8[_0x38c74f(0x137)],0x1);_0x1425ca[_0x38c74f(0x14f)](_0x66bc49,0x0);_0x66bc49--){_0x1425ca[_0x38c74f(0x11e)](_0x1425ca[_0x38c74f(0x157)],_0x1425ca[_0x38c74f(0x128)])?_0x59725e[_0x38c74f(0x139)](''+_0x1f014d['bold']['red'](_0x451f00+'\x20failed')):_0x5408db['splice'](_0x2b2fd8[_0x66bc49],0x2);}}}_0x1425ca[_0x38c74f(0x146)](parallelCucumberRun,_0x15bdb4,_0x3f998b,_0x1545d1[_0x38c74f(0xd9)],_0x5408db,_0x587407)[_0x38c74f(0x133)](_0x5373d3=>{const _0x187918=_0x38c74f;let _0x10339e=_0x1425ca[_0x187918(0x123)](printCucumberStats,_0x5373d3);process['exitCode']=_0x10339e,_0x1425ca[_0x187918(0x148)](_0x587407[_0x187918(0x137)],0x0)&&(_0x1425ca['xwFRj'](_0x1425ca[_0x187918(0x10f)],_0x1425ca['yCZRp'])?(logger[_0x187918(0x13d)](_0x1425ca[_0x187918(0xd1)]),helper[_0x187918(0x156)](_0xa06d0d,_0x587407),logger[_0x187918(0x13d)](_0x1425ca[_0x187918(0xf4)]),helper[_0x187918(0x10a)](_0xa06d0d)):_0x574dee['splice'](_0x1e164c[_0x174b79],0x2));});}module[a0_0xad496e(0x12d)]=run;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function a1_0x7435(_0x50b35f,_0x263cd8){const _0x14fe07=a1_0x14fe();return a1_0x7435=function(_0x743508,_0x527601){_0x743508=_0x743508-0x137;let _0x596366=_0x14fe07[_0x743508];return _0x596366;},a1_0x7435(_0x50b35f,_0x263cd8);}const a1_0xe4c302=a1_0x7435;function a1_0x14fe(){const _0x49a6f6=['HTuij','338724WphZta','uPojf','Kkami','status','ASOVf','UNDEFINED','includes','NnIrU','testRunStarted','aefaI','CONFIG','fPrJD','byQRR','aNhta','DwEAO','nwpGE','NDGzq','getTestCaseAttempt','__platform','OZhKX','TdlAU','fzNtK','fiVAE','ZdTtB','env','DYEEZ','\x20-\x20','rByJY','rJLuQ','gherkinDocument','sBjMC','lKAtw','oUlHD','zTiCQ','qcaNe','JtEuC','HvfJN','cwd','supportCodeLibrary','9QcykUI','incrementCounter','text','rYXFk','WoOic','qCfse','bstack','OZIny','actionLocation','eventDataCollector','QjwTC','skDzc','pTyUX','zzqHs','DwpzB','HRSRZ','jtIWO','logTestCaseFinished','AMBIGUOUS','NIRSk','keyword','testCaseStartedId','FQeAL','snippetBuilder','IOAZX','bxVHH','logTestRunFinished','IdCQD','rTJUZ','fIdjW','27092280NnSDfJ','2918433XYGfaA','testCaseFinished','83566CXBpGv','exports','1854072kWSsdG','log','pnSbu','../../../helpers/helper','212270imvdQX','zhGSV','XKZwK','QKLvp','YODLo','name','envelope','12hnWvdM','forEach','Executing\x20tests\x20for\x20','24RXBJIn','TGwsw','11ozvXTZ','eventBroadcaster','BkGFE','2ySllbd','isBstackHook','SKIPPED','MslFN','JGWjj','NjkgH','6286460rhHjqU','UNKNOWN','rorkZ','EPyop','PASSED','testRunFinished','parse','wTngt','cKxEe','capability','rzXtr','xycXc','fCPYZ','zFiHB','GDoSZ','uri','sourceLocation','CrRzU','iyCIS','result','WMwze','kkGnp','vjklH','testCaseAttempt','JIxdU','kRJsq','JEJHc','kUIeb','mhlNj','@cucumber/cucumber','aXHos','FAILED','JCtkI','rmGEK','testCaseStarted','\x20\x20\x20\x20','KTADd','OXEii'];a1_0x14fe=function(){return _0x49a6f6;};return a1_0x14fe();}(function(_0x36446a,_0x59f690){const _0x203847=a1_0x7435,_0x22e7f5=_0x36446a();while(!![]){try{const _0x346301=-parseInt(_0x203847(0x18a))/0x1+parseInt(_0x203847(0x15d))/0x2*(-parseInt(_0x203847(0x146))/0x3)+parseInt(_0x203847(0x155))/0x4*(parseInt(_0x203847(0x14e))/0x5)+parseInt(_0x203847(0x158))/0x6*(-parseInt(_0x203847(0x148))/0x7)+-parseInt(_0x203847(0x14a))/0x8*(-parseInt(_0x203847(0x1b1))/0x9)+parseInt(_0x203847(0x163))/0xa*(-parseInt(_0x203847(0x15a))/0xb)+parseInt(_0x203847(0x145))/0xc;if(_0x346301===_0x59f690)break;else _0x22e7f5['push'](_0x22e7f5['shift']());}catch(_0x5a6ed4){_0x22e7f5['push'](_0x22e7f5['shift']());}}}(a1_0x14fe,0x9988e));const {requireModule,getPlatformName}=require(a1_0xe4c302(0x14d)),{Formatter,formatterHelpers,Status}=requireModule(a1_0xe4c302(0x180));class BrowserstackFormatter extends Formatter{constructor(_0x31d190){const _0x3b9cd9=a1_0xe4c302,_0x403778={'OXEii':function(_0x6c66e5,_0x1c9f57){return _0x6c66e5!==_0x1c9f57;},'oUlHD':function(_0x219ed3,_0x145881){return _0x219ed3(_0x145881);},'QjwTC':function(_0x3a6f50,_0x21c7d5){return _0x3a6f50+_0x21c7d5;},'bxVHH':function(_0x275379,_0x5f453a){return _0x275379(_0x5f453a);},'rzXtr':function(_0x131ece,_0x1aac1a){return _0x131ece+_0x1aac1a;},'NnIrU':function(_0x13da41,_0x57a652){return _0x13da41!=_0x57a652;},'kyXBY':_0x3b9cd9(0x1b7),'ASOVf':function(_0x25cb25,_0x47c74c){return _0x25cb25+_0x47c74c;},'zzCLO':function(_0x3a7101,_0x302482){return _0x3a7101+_0x302482;},'rTJUZ':function(_0x453c83,_0x5befda){return _0x453c83+_0x5befda;},'fPrJD':'\x20\x20\x20\x20','fzNtK':_0x3b9cd9(0x1a4),'rJLuQ':function(_0x394c00,_0x3b4e3e){return _0x394c00==_0x3b4e3e;},'fiVAE':_0x3b9cd9(0x182),'JCtkI':function(_0x189c2e,_0x186632){return _0x189c2e+_0x186632;},'JtEuC':function(_0x2c98c9,_0x398f69){return _0x2c98c9===_0x398f69;},'dXXyB':_0x3b9cd9(0x193),'byQRR':_0x3b9cd9(0x1be),'NjkgH':_0x3b9cd9(0x174),'XKZwK':_0x3b9cd9(0x19e),'rByJY':_0x3b9cd9(0x17d),'HRSRZ':function(_0x22b1d3,_0x20884c){return _0x22b1d3!==_0x20884c;},'WMwze':_0x3b9cd9(0x160),'rcjtP':_0x3b9cd9(0x18b),'qCfse':function(_0x319c28,_0x27bfbf){return _0x319c28===_0x27bfbf;},'QKLvp':'QzYby','HvfJN':function(_0xf2db00,_0x24e020){return _0xf2db00!==_0x24e020;},'uUZGB':'ZfksP','pTyUX':_0x3b9cd9(0x1a1),'SspAA':function(_0x1dcecd,_0x5d9eec){return _0x1dcecd!==_0x5d9eec;},'IOAZX':_0x3b9cd9(0x198),'aNhta':_0x3b9cd9(0x154)};super(_0x31d190),_0x31d190[_0x3b9cd9(0x15b)]['on'](_0x403778[_0x3b9cd9(0x197)],_0x1bfde4=>{const _0x33b7a5=_0x3b9cd9;if(_0x403778[_0x33b7a5(0x1ad)](_0x403778['dXXyB'],_0x403778[_0x33b7a5(0x196)])){let _0x2e24ca;if(_0x403778[_0x33b7a5(0x188)](_0x11b817[_0x33b7a5(0x1a2)][_0x33b7a5(0x194)],_0x51f8c6)){let _0x3a9223=_0x430e52[_0x33b7a5(0x169)](_0x17d26f[_0x33b7a5(0x1a2)][_0x33b7a5(0x194)]);_0x2e24ca=_0x3a9223[_0x33b7a5(0x16c)];}_0x403778['OXEii'](_0x2e24ca,_0x1da480)&&(_0xcb33b7[_0x33b7a5(0x19c)]=_0x403778['oUlHD'](_0x53b047,_0x2e24ca),this[_0x33b7a5(0x14b)](_0x403778['QjwTC'](_0x33b7a5(0x157)+_0x5b7a38[_0x33b7a5(0x19c)],'\x0a')));}else{if(_0x1bfde4[_0x33b7a5(0x185)])_0x403778[_0x33b7a5(0x1ad)](_0x403778[_0x33b7a5(0x162)],_0x403778['NjkgH'])?testSuites+=0x1:this[_0x33b7a5(0x138)](_0x25589e[_0x33b7a5(0x147)]);else{if(_0x1bfde4[_0x33b7a5(0x192)]){if(_0x403778[_0x33b7a5(0x1ad)](_0x403778[_0x33b7a5(0x150)],_0x403778[_0x33b7a5(0x1a5)]))_0x177914['__platform']=_0x403778[_0x33b7a5(0x140)](_0x2eb72e,_0xb33525),this[_0x33b7a5(0x14b)](_0x403778[_0x33b7a5(0x16d)](_0x33b7a5(0x157)+_0x389085[_0x33b7a5(0x19c)],'\x0a'));else{let _0x18ca4f;if(_0x403778['HRSRZ'](process[_0x33b7a5(0x1a2)][_0x33b7a5(0x194)],undefined)){if(_0x403778[_0x33b7a5(0x1c0)](_0x403778[_0x33b7a5(0x177)],_0x403778['rcjtP'])){let _0x413c6e=JSON[_0x33b7a5(0x169)](process[_0x33b7a5(0x1a2)][_0x33b7a5(0x194)]);_0x18ca4f=_0x413c6e['capability'];}else _0x22262f=!![];}if(_0x403778[_0x33b7a5(0x1c0)](_0x18ca4f,undefined)){if(_0x403778[_0x33b7a5(0x1b6)](_0x403778[_0x33b7a5(0x151)],_0x403778[_0x33b7a5(0x151)]))global['__platform']=_0x403778[_0x33b7a5(0x1aa)](getPlatformName,_0x18ca4f),this[_0x33b7a5(0x14b)](_0x403778[_0x33b7a5(0x143)](_0x33b7a5(0x157)+global['__platform'],'\x0a'));else return!![];}}}else{if(_0x1bfde4[_0x33b7a5(0x147)])_0x403778[_0x33b7a5(0x1ae)](_0x403778['uUZGB'],_0x403778[_0x33b7a5(0x1bd)])?this[_0x33b7a5(0x138)](_0x1bfde4[_0x33b7a5(0x147)]):_0x403778[_0x33b7a5(0x191)](_0x26bf2c[_0x33b7a5(0x153)],_0x403778['kyXBY'])&&!this['isBstackHook'](_0x7b4c9c)&&(_0x38045b+=0x1,this[_0x33b7a5(0x14b)](_0x403778[_0x33b7a5(0x1bb)](_0x403778[_0x33b7a5(0x18e)](_0x403778[_0x33b7a5(0x18e)](_0x403778['zzCLO'](_0x403778[_0x33b7a5(0x143)](_0x403778[_0x33b7a5(0x195)],_0x32cb86['keyword']),_0x1d6510[_0x33b7a5(0x1b3)]||''),_0x403778[_0x33b7a5(0x19f)]),_0x29be04[_0x4f6a2d[_0x33b7a5(0x176)][_0x33b7a5(0x18d)]]),'\x0a')),this['incrementCounter'](_0x1ae4e1[_0x2f876a[_0x33b7a5(0x176)][_0x33b7a5(0x18d)]]),_0x403778[_0x33b7a5(0x1a6)](_0x1aa0b8[_0x28d662['result'][_0x33b7a5(0x18d)]],_0x403778[_0x33b7a5(0x1a0)])&&(_0x94e0e0=!![]));else _0x1bfde4[_0x33b7a5(0x168)]&&(_0x403778['SspAA'](_0x403778[_0x33b7a5(0x13f)],_0x403778['IOAZX'])?this['log'](_0x403778[_0x33b7a5(0x183)](_0x403778[_0x33b7a5(0x18e)]('\x0a',_0xb1debd[_0x33b7a5(0x19c)]),'\x0a')):this['logTestRunFinished'](_0x1bfde4[_0x33b7a5(0x168)]));}}}});}[a1_0xe4c302(0x138)](_0xf90df1){const _0x533b2b=a1_0xe4c302,_0x33957d={};_0x33957d['rYXFk']=function(_0x3fba3e,_0x262928){return _0x3fba3e===_0x262928;},_0x33957d[_0x533b2b(0x14f)]='woQgg',_0x33957d['HqKGn']=function(_0x5ee456,_0x53d555){return _0x5ee456!=_0x53d555;},_0x33957d[_0x533b2b(0x159)]=_0x533b2b(0x1b7),_0x33957d[_0x533b2b(0x142)]=function(_0x542d4f,_0x46ea7a){return _0x542d4f!==_0x46ea7a;},_0x33957d[_0x533b2b(0x137)]=_0x533b2b(0x184),_0x33957d['cKxEe']=function(_0x1b8f27,_0x3dc854){return _0x1b8f27+_0x3dc854;},_0x33957d[_0x533b2b(0x15c)]=function(_0x3d413c,_0xddc42c){return _0x3d413c+_0xddc42c;},_0x33957d[_0x533b2b(0x161)]=function(_0x5e9123,_0x2545ea){return _0x5e9123+_0x2545ea;},_0x33957d[_0x533b2b(0x179)]=function(_0x29d139,_0x268fa2){return _0x29d139+_0x268fa2;},_0x33957d[_0x533b2b(0x175)]=_0x533b2b(0x186),_0x33957d[_0x533b2b(0x178)]=_0x533b2b(0x1a4),_0x33957d['fCPYZ']=function(_0x5f5331,_0x14bc72){return _0x5f5331==_0x14bc72;},_0x33957d['DYEEZ']='FAILED',_0x33957d[_0x533b2b(0x1ac)]=function(_0x5b6184,_0x246c8c){return _0x5b6184!==_0x246c8c;},_0x33957d[_0x533b2b(0x13d)]=_0x533b2b(0x1bf),_0x33957d[_0x533b2b(0x19d)]=function(_0x370923,_0x3ff4c1){return _0x370923+_0x3ff4c1;},_0x33957d['OZIny']=function(_0x4b162f,_0x473067){return _0x4b162f+_0x473067;},_0x33957d[_0x533b2b(0x171)]=function(_0x29077b,_0x506b9a){return _0x29077b==_0x506b9a;},_0x33957d[_0x533b2b(0x152)]='sNJwS',_0x33957d['SGgoN']=function(_0x1e4cba,_0xfba2a2){return _0x1e4cba+_0xfba2a2;},_0x33957d[_0x533b2b(0x17b)]=function(_0x7d6745,_0x17c213){return _0x7d6745+_0x17c213;},_0x33957d[_0x533b2b(0x1a8)]=function(_0x4a381c,_0xf0c4bc){return _0x4a381c+_0xf0c4bc;},_0x33957d[_0x533b2b(0x1b5)]=_0x533b2b(0x189),_0x33957d[_0x533b2b(0x199)]=_0x533b2b(0x181);const _0x448a5c=_0x33957d;_0x448a5c[_0x533b2b(0x142)](global[_0x533b2b(0x19c)],undefined)&&(_0x448a5c['qcaNe'](_0x448a5c['YODLo'],_0x448a5c[_0x533b2b(0x152)])?_0x15246a+=0x1:this['log'](_0x448a5c['OZhKX'](_0x448a5c[_0x533b2b(0x19d)]('\x0a',global[_0x533b2b(0x19c)]),'\x0a')));const _0xfce35b=this[_0x533b2b(0x1ba)][_0x533b2b(0x19b)](_0xf90df1[_0x533b2b(0x13c)]);this[_0x533b2b(0x14b)](_0x448a5c[_0x533b2b(0x15c)](_0x448a5c['SGgoN'](_0x448a5c[_0x533b2b(0x17b)](_0x448a5c[_0x533b2b(0x1a8)]('\x20\x20',_0xfce35b[_0x533b2b(0x1a7)]['feature']['name']),_0x448a5c[_0x533b2b(0x178)]),_0xfce35b['pickle'][_0x533b2b(0x153)]),'\x0a'));const _0x3b3504={};_0x3b3504[_0x533b2b(0x1af)]=this['cwd'],_0x3b3504[_0x533b2b(0x13e)]=this[_0x533b2b(0x13e)],_0x3b3504[_0x533b2b(0x1b0)]=this[_0x533b2b(0x1b0)],_0x3b3504[_0x533b2b(0x17a)]=_0xfce35b;const _0x4f3d4c=formatterHelpers['parseTestCaseAttempt'](_0x3b3504);let _0x429170=![];_0x4f3d4c['testSteps'][_0x533b2b(0x156)](_0x65e582=>{const _0x58c381=_0x533b2b;if(_0x448a5c['rYXFk'](_0x448a5c[_0x58c381(0x14f)],_0x448a5c[_0x58c381(0x14f)])){if(_0x448a5c['HqKGn'](_0x65e582[_0x58c381(0x153)],_0x448a5c[_0x58c381(0x159)])&&!this['isBstackHook'](_0x65e582)){if(_0x448a5c[_0x58c381(0x142)](_0x448a5c[_0x58c381(0x137)],_0x448a5c[_0x58c381(0x137)])){let _0x18d222=_0x78668['parse'](_0x192e01['env']['CONFIG']);_0x5c7cba=_0x18d222[_0x58c381(0x16c)];}else totalTests+=0x1,this[_0x58c381(0x14b)](_0x448a5c[_0x58c381(0x16b)](_0x448a5c[_0x58c381(0x15c)](_0x448a5c[_0x58c381(0x161)](_0x448a5c['BkGFE'](_0x448a5c[_0x58c381(0x179)](_0x448a5c[_0x58c381(0x175)],_0x65e582['keyword']),_0x65e582[_0x58c381(0x1b3)]||''),_0x448a5c[_0x58c381(0x178)]),Status[_0x65e582[_0x58c381(0x176)][_0x58c381(0x18d)]]),'\x0a')),this['incrementCounter'](Status[_0x65e582[_0x58c381(0x176)]['status']]),_0x448a5c[_0x58c381(0x16f)](Status[_0x65e582['result'][_0x58c381(0x18d)]],_0x448a5c[_0x58c381(0x1a3)])&&(_0x448a5c[_0x58c381(0x1ac)](_0x448a5c[_0x58c381(0x13d)],_0x448a5c[_0x58c381(0x13d)])?this[_0x58c381(0x141)](_0x3cc3f9[_0x58c381(0x168)]):_0x429170=!![]);}}else _0x520e72+=0x1;}),_0x429170&&(_0x448a5c[_0x533b2b(0x1b4)](_0x448a5c[_0x533b2b(0x1b5)],_0x448a5c[_0x533b2b(0x199)])?(_0xec6f28+=0x1,this[_0x533b2b(0x14b)](_0x448a5c[_0x533b2b(0x19d)](_0x448a5c[_0x533b2b(0x15c)](_0x448a5c[_0x533b2b(0x179)](_0x448a5c['vjklH'](_0x448a5c[_0x533b2b(0x1b8)](_0x448a5c[_0x533b2b(0x175)],_0x2d5af0[_0x533b2b(0x13b)]),_0x2bf823[_0x533b2b(0x1b3)]||''),_0x448a5c[_0x533b2b(0x178)]),_0x330363[_0x40f983[_0x533b2b(0x176)][_0x533b2b(0x18d)]]),'\x0a')),this['incrementCounter'](_0x324cc2[_0x5865eb['result']['status']]),_0x448a5c['GDoSZ'](_0x4b0e61[_0x4d21fd[_0x533b2b(0x176)][_0x533b2b(0x18d)]],_0x448a5c[_0x533b2b(0x1a3)])&&(_0x5dcc93=!![])):testSuitesFailed+=0x1),this[_0x533b2b(0x14b)]('\x0a');}[a1_0xe4c302(0x141)](_0x1cbe29){}[a1_0xe4c302(0x15e)](_0x3a2795){const _0x48b36c=a1_0xe4c302,_0x151d03={};_0x151d03[_0x48b36c(0x144)]=function(_0x313356,_0x17e7b4){return _0x313356!==_0x17e7b4;},_0x151d03[_0x48b36c(0x19a)]='cucumber-js/test.setup.js',_0x151d03[_0x48b36c(0x1a9)]=function(_0x43ad78,_0x588b02){return _0x43ad78===_0x588b02;},_0x151d03[_0x48b36c(0x166)]=_0x48b36c(0x165),_0x151d03[_0x48b36c(0x16e)]='KSaxn',_0x151d03['zFiHB']=function(_0x194a8d,_0x300dd2){return _0x194a8d===_0x300dd2;},_0x151d03['KTADd']=_0x48b36c(0x1bc),_0x151d03[_0x48b36c(0x17c)]=_0x48b36c(0x14c);const _0x4714ea=_0x151d03;if(_0x4714ea[_0x48b36c(0x144)](_0x3a2795[_0x48b36c(0x173)],undefined)){if(_0x4714ea[_0x48b36c(0x1a9)](_0x4714ea[_0x48b36c(0x166)],_0x4714ea[_0x48b36c(0x16e)])){if(_0x4714ea['fIdjW'](_0x5b8b4a[_0x48b36c(0x173)],_0x4a2625))return![];if(_0x4fdf70[_0x48b36c(0x1b9)]&&_0x43e1a1[_0x48b36c(0x1b9)][_0x48b36c(0x172)][_0x48b36c(0x190)](_0x4714ea['NDGzq']))return!![];return![];}else return![];}if(_0x3a2795[_0x48b36c(0x1b9)]&&_0x3a2795[_0x48b36c(0x1b9)][_0x48b36c(0x172)][_0x48b36c(0x190)](_0x4714ea['NDGzq']))return _0x4714ea[_0x48b36c(0x170)](_0x4714ea[_0x48b36c(0x187)],_0x4714ea[_0x48b36c(0x17c)])?![]:!![];return![];}[a1_0xe4c302(0x1b2)](_0xdcaedb){const _0x2fc07c=a1_0xe4c302,_0xa42e2e={};_0xa42e2e[_0x2fc07c(0x17e)]=_0x2fc07c(0x182),_0xa42e2e['nGuoR']=_0x2fc07c(0x167),_0xa42e2e[_0x2fc07c(0x1ab)]=_0x2fc07c(0x15f),_0xa42e2e['mhlNj']='PENDING',_0xa42e2e['NIRSk']=_0x2fc07c(0x18f),_0xa42e2e[_0x2fc07c(0x16a)]=_0x2fc07c(0x164),_0xa42e2e[_0x2fc07c(0x18c)]=_0x2fc07c(0x139);const _0x792435=_0xa42e2e;switch(_0xdcaedb){case _0x792435[_0x2fc07c(0x17e)]:testsFailed+=0x1;break;case _0x792435['nGuoR']:testsPassed+=0x1;break;case _0x792435[_0x2fc07c(0x1ab)]:testsSkipped+=0x1;break;case _0x792435[_0x2fc07c(0x17f)]:testsPending+=0x1;break;case _0x792435[_0x2fc07c(0x13a)]:testsUndefined+=0x1;break;case _0x792435['wTngt']:testsUnknown+=0x1;break;case _0x792435['Kkami']:testsAmbiguous+=0x1;break;default:break;}}}module[a1_0xe4c302(0x149)]=BrowserstackFormatter;
|
|
1
|
+
function a1_0x2cb2(_0x552720,_0xd658d0){const _0x27816c=a1_0x2781();return a1_0x2cb2=function(_0x2cb245,_0x447eba){_0x2cb245=_0x2cb245-0xec;let _0x4f4bae=_0x27816c[_0x2cb245];return _0x4f4bae;},a1_0x2cb2(_0x552720,_0xd658d0);}function a1_0x2781(){const _0x1e70dd=['wtgIA','text','5vmnpOz','ctljt','capability','LEBLs','SKIPPED','PtWnC','incrementCounter','UNKNOWN','VslcY','bstack','IqTkH','gZZvx','ZzVWX','HvfrU','rJolZ','QgbDR','env','qHrrA','log','ExtXz','uri','kmdbQ','GPRUt','ZFqQt','gherkinDocument','testSteps','parse','esZsw','sokbZ','azDdx','oURlf','espOY','XIODl','WUSsV','32270PFHquM','zDvcl','Qhsja','jraTT','DHnZH','FAILED','status','OQtaX','MRgKr','WHkKc','xnbpv','wlPRo','MYoID','ReHik','tHBKs','PASSED','pickle','JkKFl','__platform','logTestCaseFinished','ztvHH','\x20\x20\x20\x20','oeJWB','XchZZ','testCaseFinished','BmKmM','Executing\x20tests\x20for\x20','FhaCL','CQUjX','1239804MkSnss','DdLIi','bPtxx','YERtK','testCaseAttempt','YjjZr','AMBIGUOUS','QHhSl','oaLhX','@cucumber/cucumber','2MKJAMY','FhWqJ','aSJXC','jUVFu','cjhko','includes','Qoavr','fHmfu','testRunFinished','UjLRo','jSqkX','KKBmV','ozZOi','ImmZx','ozhjQ','forEach','uQBZb','cucumber-js/test.setup.js','BByeW','result','ZlidC','qUWUJ','rjUHu','name','bSavM','puBQv','hoNsf','sourceLocation','OZctJ','iODJy','hyNLf','\x20-\x20','ABzMX','qEBAo','JJOaj','isBstackHook','xHUFK','parseTestCaseAttempt','1785669axZEtN','AopRR','nkRHi','1188441jSrjrx','logTestRunFinished','TdIym','eventDataCollector','bSSQM','eventBroadcaster','mdtJS','UNDEFINED','867032GQuMOo','feature','QimhA','CONFIG','IDtWO','actionLocation','yKoIz','fTRWH','supportCodeLibrary','1630391vpbwmn','3355062QTHNUg','envelope','SsiKG','IOsBe','20cRMAos','keyword','DKDdg'];a1_0x2781=function(){return _0x1e70dd;};return a1_0x2781();}const a1_0x1ba0e3=a1_0x2cb2;(function(_0x140124,_0x327fd4){const _0x1527ad=a1_0x2cb2,_0x5c8f98=_0x140124();while(!![]){try{const _0xea9499=-parseInt(_0x1527ad(0x10b))/0x1*(parseInt(_0x1527ad(0x132))/0x2)+-parseInt(_0x1527ad(0x158))/0x3+parseInt(_0x1527ad(0x128))/0x4+parseInt(_0x1527ad(0x176))/0x5*(parseInt(_0x1527ad(0x16d))/0x6)+parseInt(_0x1527ad(0x16c))/0x7+parseInt(_0x1527ad(0x163))/0x8+parseInt(_0x1527ad(0x15b))/0x9*(-parseInt(_0x1527ad(0x171))/0xa);if(_0xea9499===_0x327fd4)break;else _0x5c8f98['push'](_0x5c8f98['shift']());}catch(_0x3d6332){_0x5c8f98['push'](_0x5c8f98['shift']());}}}(a1_0x2781,0x4dd6d));const {requireModule,getPlatformName}=require('../../../helpers/helper'),{Formatter,formatterHelpers,Status}=requireModule(a1_0x1ba0e3(0x131));class BrowserstackFormatter extends Formatter{constructor(_0x3d54b8){const _0x81c4ae=a1_0x1ba0e3,_0xc3a6bb={'oaLhX':function(_0x556942,_0xe0316b){return _0x556942+_0xe0316b;},'AopRR':function(_0x48d9a5,_0x5d1c61){return _0x48d9a5+_0x5d1c61;},'DdLIi':function(_0x42ffd2,_0x17b542){return _0x42ffd2!==_0x17b542;},'nGXvs':_0x81c4ae(0x143),'azDdx':function(_0x339868,_0x49e239){return _0x339868+_0x49e239;},'uQBZb':_0x81c4ae(0x120),'BByeW':_0x81c4ae(0x151),'ZFqQt':function(_0x54e268,_0xa746cd){return _0x54e268==_0xa746cd;},'cjhko':_0x81c4ae(0x110),'qEBAo':function(_0x892955,_0x3116d7){return _0x892955===_0x3116d7;},'cERXa':_0x81c4ae(0x154),'NmHkd':_0x81c4ae(0x169),'ImmZx':_0x81c4ae(0x13e),'jSqkX':_0x81c4ae(0x148),'QHhSl':_0x81c4ae(0x174),'hoNsf':function(_0x298897,_0x4c37d1){return _0x298897!==_0x4c37d1;},'xnbpv':function(_0xe27360,_0x411af8){return _0xe27360===_0x411af8;},'oxqEI':_0x81c4ae(0x140),'ABzMX':_0x81c4ae(0xf7),'lACqf':function(_0x3e244e,_0x30e8ad){return _0x3e244e!==_0x30e8ad;},'iODJy':function(_0x4a2054,_0x4582ea){return _0x4a2054===_0x4582ea;},'GPRUt':_0x81c4ae(0xf4),'xHUFK':function(_0x10c7ee,_0x321470){return _0x10c7ee(_0x321470);},'wlPRo':_0x81c4ae(0x121),'OVZZj':_0x81c4ae(0x14e),'WUSsV':_0x81c4ae(0x11c),'bPtxx':_0x81c4ae(0x16e)};super(_0x3d54b8),_0x3d54b8[_0x81c4ae(0x160)]['on'](_0xc3a6bb[_0x81c4ae(0x12a)],_0x348d83=>{const _0x24b860=_0x81c4ae,_0x2fad82={'nkRHi':function(_0x2010e7,_0x4fad9e){return _0xc3a6bb['oaLhX'](_0x2010e7,_0x4fad9e);},'pBbeI':function(_0x25dddb,_0x27809d){const _0x5a1599=a1_0x2cb2;return _0xc3a6bb[_0x5a1599(0x130)](_0x25dddb,_0x27809d);},'sokbZ':function(_0x210742,_0x47ec5c){const _0x8d8750=a1_0x2cb2;return _0xc3a6bb[_0x8d8750(0x106)](_0x210742,_0x47ec5c);},'oyySe':_0xc3a6bb[_0x24b860(0x142)],'qUWUJ':_0xc3a6bb[_0x24b860(0x144)],'XJQIo':function(_0x53d482,_0x795031){const _0x3e9e50=_0x24b860;return _0xc3a6bb[_0x3e9e50(0x100)](_0x53d482,_0x795031);},'tHBKs':_0xc3a6bb[_0x24b860(0x136)]};if(_0xc3a6bb['qEBAo'](_0xc3a6bb['cERXa'],_0xc3a6bb['cERXa'])){if(_0x348d83['testCaseStarted']){if(_0xc3a6bb[_0x24b860(0x129)](_0xc3a6bb['NmHkd'],_0xc3a6bb[_0x24b860(0x13f)]))testSuites+=0x1;else return![];}else{if(_0x348d83['testRunStarted']){if(_0xc3a6bb[_0x24b860(0x153)](_0xc3a6bb[_0x24b860(0x13c)],_0xc3a6bb[_0x24b860(0x12f)]))_0x188636=!![];else{let _0x3865fc;if(_0xc3a6bb[_0x24b860(0x14c)](process[_0x24b860(0xf9)][_0x24b860(0x166)],undefined)){if(_0xc3a6bb[_0x24b860(0x115)](_0xc3a6bb['oxqEI'],_0xc3a6bb[_0x24b860(0x152)]))_0x586a3d+=0x1;else{let _0x2fd856=JSON['parse'](process[_0x24b860(0xf9)][_0x24b860(0x166)]);_0x3865fc=_0x2fd856[_0x24b860(0x178)];}}_0xc3a6bb['lACqf'](_0x3865fc,undefined)&&(_0xc3a6bb[_0x24b860(0x14f)](_0xc3a6bb[_0x24b860(0xff)],_0xc3a6bb[_0x24b860(0xff)])?(global[_0x24b860(0x11d)]=_0xc3a6bb[_0x24b860(0x156)](getPlatformName,_0x3865fc),this[_0x24b860(0xfb)](_0xc3a6bb[_0x24b860(0x159)](_0x24b860(0x125)+global[_0x24b860(0x11d)],'\x0a'))):this[_0x24b860(0xfb)](_0xc3a6bb[_0x24b860(0x130)](_0xc3a6bb[_0x24b860(0x159)]('\x0a',_0x35d397[_0x24b860(0x11d)]),'\x0a')));}}else{if(_0x348d83[_0x24b860(0x123)]){if(_0xc3a6bb['hoNsf'](_0xc3a6bb[_0x24b860(0x116)],_0xc3a6bb[_0x24b860(0x116)])){let _0x48403c=_0x464974[_0x24b860(0x103)](_0x62b08d['env']['CONFIG']);_0x9f3c44=_0x48403c['capability'];}else this[_0x24b860(0x11e)](_0x348d83['testCaseFinished']);}else{if(_0x348d83['testRunFinished']){if(_0xc3a6bb[_0x24b860(0x129)](_0xc3a6bb['OVZZj'],_0xc3a6bb[_0x24b860(0x10a)]))this[_0x24b860(0x15c)](_0x348d83[_0x24b860(0x13a)]);else{if(_0xc3a6bb[_0x24b860(0x129)](_0xdc4452[_0x24b860(0x14d)],_0x1daf04))return![];if(_0x486bc0[_0x24b860(0x168)]&&_0xd83413['actionLocation'][_0x24b860(0xfd)]['includes'](_0xc3a6bb['nGXvs']))return!![];return![];}}}}}}else _0x5725e6+=0x1,this[_0x24b860(0xfb)](_0x2fad82[_0x24b860(0x15a)](_0x2fad82[_0x24b860(0x15a)](_0x2fad82['pBbeI'](_0x2fad82[_0x24b860(0x105)](_0x2fad82[_0x24b860(0x15a)](_0x2fad82['oyySe'],_0x3be955[_0x24b860(0x172)]),_0x114ed0[_0x24b860(0x175)]||''),_0x2fad82[_0x24b860(0x147)]),_0x3f69ca[_0x55ebeb[_0x24b860(0x145)]['status']]),'\x0a')),this[_0x24b860(0xef)](_0x56ddda[_0x2a5368[_0x24b860(0x145)][_0x24b860(0x111)]]),_0x2fad82['XJQIo'](_0x272184[_0x26e140['result'][_0x24b860(0x111)]],_0x2fad82[_0x24b860(0x119)])&&(_0x4086d6=!![]);});}[a1_0x1ba0e3(0x11e)](_0x3b3b5b){const _0xc00ce2=a1_0x1ba0e3,_0x4073fd={'UjLRo':function(_0x24b1f1,_0x368785){return _0x24b1f1!==_0x368785;},'DWRTK':function(_0x34f5de,_0x159d43){return _0x34f5de!==_0x159d43;},'spnDj':function(_0x284ed7,_0x564b77){return _0x284ed7(_0x564b77);},'mdtJS':function(_0x35b795,_0x12f6f4){return _0x35b795+_0x12f6f4;},'PtWnC':function(_0x1dc940,_0x344397){return _0x1dc940===_0x344397;},'aSJXC':_0xc00ce2(0x10c),'FhWqJ':function(_0x2949bc,_0x494a04){return _0x2949bc!=_0x494a04;},'LEBLs':_0xc00ce2(0xf2),'QimhA':_0xc00ce2(0x139),'DHnZH':_0xc00ce2(0x173),'BmKmM':function(_0x211bb4,_0x56bed9){return _0x211bb4+_0x56bed9;},'MRgKr':function(_0x1be2c9,_0x1e499b){return _0x1be2c9+_0x1e499b;},'oURlf':_0xc00ce2(0x120),'qHrrA':_0xc00ce2(0x151),'IqTkH':function(_0xa5f969,_0x5f3982){return _0xa5f969==_0x5f3982;},'CQUjX':_0xc00ce2(0x110),'puBQv':_0xc00ce2(0x150),'oyCra':'nYube','FhaCL':function(_0x1c6bc8,_0x370dd3){return _0x1c6bc8!==_0x370dd3;},'ZzVWX':function(_0x495d52,_0x4d99e6){return _0x495d52!==_0x4d99e6;},'lwAXL':'CldEm','HvfrU':'SEnJj','WHkKc':function(_0x1bce72,_0x433d26){return _0x1bce72+_0x433d26;},'XchZZ':function(_0x539417,_0x1ad587){return _0x539417+_0x1ad587;},'bSavM':_0xc00ce2(0x167)};_0x4073fd[_0xc00ce2(0x126)](global[_0xc00ce2(0x11d)],undefined)&&(_0x4073fd[_0xc00ce2(0xf5)](_0x4073fd['lwAXL'],_0x4073fd[_0xc00ce2(0xf6)])?this[_0xc00ce2(0xfb)](_0x4073fd[_0xc00ce2(0x114)](_0x4073fd[_0xc00ce2(0x124)]('\x0a',global[_0xc00ce2(0x11d)]),'\x0a')):this[_0xc00ce2(0x11e)](_0x4e9657[_0xc00ce2(0x123)]));const _0x105b9e=this[_0xc00ce2(0x15e)]['getTestCaseAttempt'](_0x3b3b5b['testCaseStartedId']);this[_0xc00ce2(0xfb)](_0x4073fd[_0xc00ce2(0x161)](_0x4073fd[_0xc00ce2(0x161)](_0x4073fd[_0xc00ce2(0x161)](_0x4073fd[_0xc00ce2(0x122)]('\x20\x20',_0x105b9e[_0xc00ce2(0x101)][_0xc00ce2(0x164)][_0xc00ce2(0x149)]),_0x4073fd[_0xc00ce2(0xfa)]),_0x105b9e[_0xc00ce2(0x11b)][_0xc00ce2(0x149)]),'\x0a'));const _0xa50a7d={};_0xa50a7d['cwd']=this['cwd'],_0xa50a7d['snippetBuilder']=this['snippetBuilder'],_0xa50a7d[_0xc00ce2(0x16b)]=this[_0xc00ce2(0x16b)],_0xa50a7d[_0xc00ce2(0x12c)]=_0x105b9e;const _0x263f00=formatterHelpers[_0xc00ce2(0x157)](_0xa50a7d);let _0x1c2e19=![];_0x263f00[_0xc00ce2(0x102)][_0xc00ce2(0x141)](_0x15631d=>{const _0x558d15=_0xc00ce2;if(_0x4073fd[_0x558d15(0xee)](_0x4073fd[_0x558d15(0x134)],_0x4073fd[_0x558d15(0x134)])){if(_0x4073fd[_0x558d15(0x133)](_0x15631d[_0x558d15(0x149)],_0x4073fd[_0x558d15(0xec)])&&!this[_0x558d15(0x155)](_0x15631d)){if(_0x4073fd[_0x558d15(0x13b)](_0x4073fd[_0x558d15(0x165)],_0x4073fd[_0x558d15(0x10f)]))totalTests+=0x1,this[_0x558d15(0xfb)](_0x4073fd[_0x558d15(0x124)](_0x4073fd[_0x558d15(0x113)](_0x4073fd[_0x558d15(0x113)](_0x4073fd['BmKmM'](_0x4073fd['BmKmM'](_0x4073fd[_0x558d15(0x107)],_0x15631d['keyword']),_0x15631d[_0x558d15(0x175)]||''),_0x4073fd['qHrrA']),Status[_0x15631d[_0x558d15(0x145)][_0x558d15(0x111)]]),'\x0a')),this[_0x558d15(0xef)](Status[_0x15631d[_0x558d15(0x145)][_0x558d15(0x111)]]),_0x4073fd[_0x558d15(0xf3)](Status[_0x15631d['result']['status']],_0x4073fd[_0x558d15(0x127)])&&(_0x4073fd['PtWnC'](_0x4073fd[_0x558d15(0x14b)],_0x4073fd['oyCra'])?this[_0x558d15(0x15c)](_0x53402d['testRunFinished']):_0x1c2e19=!![]);else{let _0x25cbaf;if(_0x4073fd[_0x558d15(0x13b)](_0x4c7ed3[_0x558d15(0xf9)][_0x558d15(0x166)],_0x303126)){let _0x4e50e4=_0x3190fc[_0x558d15(0x103)](_0x3d97d5[_0x558d15(0xf9)][_0x558d15(0x166)]);_0x25cbaf=_0x4e50e4[_0x558d15(0x178)];}_0x4073fd['DWRTK'](_0x25cbaf,_0x652ae6)&&(_0x5e735d[_0x558d15(0x11d)]=_0x4073fd['spnDj'](_0xe8dce4,_0x25cbaf),this['log'](_0x4073fd['mdtJS'](_0x558d15(0x125)+_0x5830da[_0x558d15(0x11d)],'\x0a')));}}}else return!![];}),_0x1c2e19&&(_0x4073fd[_0xc00ce2(0xee)](_0x4073fd[_0xc00ce2(0x14a)],_0x4073fd[_0xc00ce2(0x14a)])?testSuitesFailed+=0x1:_0x322c5f+=0x1),this[_0xc00ce2(0xfb)]('\x0a');}[a1_0x1ba0e3(0x15c)](_0x4e3aec){}['isBstackHook'](_0x3a53c7){const _0x135f27=a1_0x1ba0e3,_0x257b50={'SsiKG':function(_0x51dde6,_0x553d90){return _0x51dde6!=_0x553d90;},'Qoavr':_0x135f27(0xf2),'YERtK':function(_0x2d07e5,_0x4819df){return _0x2d07e5+_0x4819df;},'ctljt':function(_0x4e2106,_0x2e3131){return _0x4e2106+_0x2e3131;},'Qpumj':function(_0x403100,_0x484fb2){return _0x403100+_0x484fb2;},'ZlidC':_0x135f27(0x120),'XIODl':_0x135f27(0x151),'YjjZr':function(_0x891029,_0x2974e0){return _0x891029==_0x2974e0;},'Qhsja':_0x135f27(0x110),'QgbDR':function(_0x31c8de,_0x3913c7){return _0x31c8de(_0x3913c7);},'MYoID':function(_0x45a6cf,_0x5ec78a){return _0x45a6cf+_0x5ec78a;},'bSSQM':function(_0x5db561,_0x45c489){return _0x5db561!==_0x45c489;},'ztvHH':_0x135f27(0x135),'fTRWH':_0x135f27(0x143),'TdIym':_0x135f27(0x104),'ReHik':_0x135f27(0x170)};if(_0x257b50['bSSQM'](_0x3a53c7[_0x135f27(0x14d)],undefined)){if(_0x257b50[_0x135f27(0x15f)](_0x257b50[_0x135f27(0x11f)],_0x257b50[_0x135f27(0x11f)]))_0x257b50[_0x135f27(0x16f)](_0x442f01[_0x135f27(0x149)],_0x257b50[_0x135f27(0x138)])&&!this[_0x135f27(0x155)](_0x4102f0)&&(_0x558876+=0x1,this['log'](_0x257b50[_0x135f27(0x12b)](_0x257b50[_0x135f27(0x12b)](_0x257b50[_0x135f27(0x177)](_0x257b50['Qpumj'](_0x257b50[_0x135f27(0x12b)](_0x257b50[_0x135f27(0x146)],_0x200546[_0x135f27(0x172)]),_0x5775db['text']||''),_0x257b50[_0x135f27(0x109)]),_0xbba830[_0x205fc9[_0x135f27(0x145)]['status']]),'\x0a')),this[_0x135f27(0xef)](_0x2afe00[_0x20d00f[_0x135f27(0x145)][_0x135f27(0x111)]]),_0x257b50[_0x135f27(0x12d)](_0x31d548[_0x29bc03['result']['status']],_0x257b50[_0x135f27(0x10d)])&&(_0x5d945b=!![]));else return![];}if(_0x3a53c7[_0x135f27(0x168)]&&_0x3a53c7['actionLocation'][_0x135f27(0xfd)][_0x135f27(0x137)](_0x257b50[_0x135f27(0x16a)])){if(_0x257b50['bSSQM'](_0x257b50[_0x135f27(0x15d)],_0x257b50[_0x135f27(0x118)]))return!![];else _0x4cdca8[_0x135f27(0x11d)]=_0x257b50[_0x135f27(0xf8)](_0x1d6605,_0x358b71),this[_0x135f27(0xfb)](_0x257b50[_0x135f27(0x117)](_0x135f27(0x125)+_0x4001a4[_0x135f27(0x11d)],'\x0a'));}return![];}[a1_0x1ba0e3(0xef)](_0x3559f4){const _0x2164cb=a1_0x1ba0e3,_0x2a5a4b={};_0x2a5a4b[_0x2164cb(0x112)]='FAILED',_0x2a5a4b['VslcY']=_0x2164cb(0x11a),_0x2a5a4b[_0x2164cb(0x13d)]=_0x2164cb(0xed),_0x2a5a4b[_0x2164cb(0x108)]='PENDING',_0x2a5a4b[_0x2164cb(0xfc)]=_0x2164cb(0x162),_0x2a5a4b[_0x2164cb(0xfe)]=_0x2164cb(0xf0),_0x2a5a4b[_0x2164cb(0x10e)]=_0x2164cb(0x12e);const _0x142491=_0x2a5a4b;switch(_0x3559f4){case _0x142491[_0x2164cb(0x112)]:testsFailed+=0x1;break;case _0x142491[_0x2164cb(0xf1)]:testsPassed+=0x1;break;case _0x142491[_0x2164cb(0x13d)]:testsSkipped+=0x1;break;case _0x142491['espOY']:testsPending+=0x1;break;case _0x142491[_0x2164cb(0xfc)]:testsUndefined+=0x1;break;case _0x142491['kmdbQ']:testsUnknown+=0x1;break;case _0x142491[_0x2164cb(0x10e)]:testsAmbiguous+=0x1;break;default:break;}}}module['exports']=BrowserstackFormatter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const a2_0x12e144=a2_0x5d66;(function(_0x3523c9,_0x284cb6){const _0x1c7e8c=a2_0x5d66,_0xc3cc27=_0x3523c9();while(!![]){try{const _0xd9e0c5=-parseInt(_0x1c7e8c(0x21a))/0x1*(parseInt(_0x1c7e8c(0x1d7))/0x2)+parseInt(_0x1c7e8c(0x281))/0x3+-parseInt(_0x1c7e8c(0x267))/0x4+parseInt(_0x1c7e8c(0x22a))/0x5+parseInt(_0x1c7e8c(0x272))/0x6+parseInt(_0x1c7e8c(0x23d))/0x7+-parseInt(_0x1c7e8c(0x278))/0x8;if(_0xd9e0c5===_0x284cb6)break;else _0xc3cc27['push'](_0xc3cc27['shift']());}catch(_0x29a1c3){_0xc3cc27['push'](_0xc3cc27['shift']());}}}(a2_0x21e7,0x2342f));const {requireModule,getPlatformName}=require(a2_0x12e144(0x23e)),{Formatter}=requireModule('cucumber'),pickleParser=requireModule(a2_0x12e144(0x27e));class BrowserstackFormatter extends Formatter{constructor(_0x4ac790){const _0x25a1ab=a2_0x12e144,_0xba477d={'LOMXU':function(_0x1e72e6,_0x4d64a0){return _0x1e72e6(_0x4d64a0);},'qXsgV':function(_0x305a56,_0x5f30df){return _0x305a56+_0x5f30df;},'DqGGp':_0x25a1ab(0x206),'lWNuT':function(_0x4f8f6b,_0x431138){return _0x4f8f6b+_0x431138;},'kKGsa':_0x25a1ab(0x270),'zYqZE':_0x25a1ab(0x221),'nHVpC':function(_0x3f1876,_0x38896e){return _0x3f1876(_0x38896e);},'aJZdp':function(_0x17f73a,_0x4c4c26){return _0x17f73a+_0x4c4c26;},'fTivp':function(_0x3b029b,_0x4a99bd){return _0x3b029b+_0x4a99bd;},'XAmUH':function(_0x1ee8b1,_0x4d7af7){return _0x1ee8b1!==_0x4d7af7;},'sMaTu':_0x25a1ab(0x235),'qGSZx':_0x25a1ab(0x249),'prEUG':function(_0x47d6e9,_0x17973e){return _0x47d6e9!==_0x17973e;},'rVMEx':function(_0x15cb29,_0x4e9320){return _0x15cb29===_0x4e9320;},'ATWHb':_0x25a1ab(0x225),'OwCRK':function(_0x4a2f11,_0x5c4c5d){return _0x4a2f11!==_0x5c4c5d;},'VSbof':_0x25a1ab(0x25e),'yRlWj':_0x25a1ab(0x23b),'IYTmE':function(_0x1d13e8,_0x50c077){return _0x1d13e8!==_0x50c077;},'ZmjkQ':_0x25a1ab(0x22e),'nppcG':_0x25a1ab(0x277),'juEzr':function(_0x4c4774,_0x2da0cd){return _0x4c4774===_0x2da0cd;},'EeHCL':'giwuW','TAMGA':function(_0x3dfba0,_0x4cf672){return _0x3dfba0(_0x4cf672);},'MHnvl':_0x25a1ab(0x283),'vLKeC':_0x25a1ab(0x1d9),'HAkMm':_0x25a1ab(0x1db),'eJCtb':'test-case-started','pDWGe':_0x25a1ab(0x1d8),'rosik':'test-run-finished','BNwPy':'test-step-started'};super(_0x4ac790),_0x4ac790['eventBroadcaster']['on'](_0xba477d['HAkMm'],()=>{const _0x34e01c=_0x25a1ab,_0x1366a7={'HVPWc':_0xba477d['zYqZE'],'pjfyN':function(_0x291d89,_0x40cec2){const _0x181a5d=a2_0x5d66;return _0xba477d[_0x181a5d(0x261)](_0x291d89,_0x40cec2);},'tpOwX':function(_0x5a0598,_0x5785b3){return _0xba477d['aJZdp'](_0x5a0598,_0x5785b3);},'yhXcS':_0xba477d[_0x34e01c(0x23c)],'eqniC':function(_0x1bf40b,_0x464d25){const _0x50025e=_0x34e01c;return _0xba477d[_0x50025e(0x271)](_0x1bf40b,_0x464d25);},'tUIna':_0xba477d['kKGsa']};if(_0xba477d[_0x34e01c(0x1dd)](_0xba477d[_0x34e01c(0x205)],_0xba477d[_0x34e01c(0x248)])){let _0x2435f6;if(_0xba477d[_0x34e01c(0x1e5)](process['env'][_0x34e01c(0x1f9)],undefined)){if(_0xba477d[_0x34e01c(0x217)](_0xba477d['ATWHb'],_0xba477d[_0x34e01c(0x251)])){let _0x221b10=JSON[_0x34e01c(0x236)](process[_0x34e01c(0x284)][_0x34e01c(0x1f9)]);_0x2435f6=_0x221b10[_0x34e01c(0x25b)];}else _0xba477d[_0x34e01c(0x25d)](_0x377875,_0x493990[_0x3119ba][_0x34e01c(0x1e2)][_0x34e01c(0x223)]()),_0x5550eb?_0x5ad02c[_0x34e01c(0x260)](_0xba477d[_0x34e01c(0x20b)](_0xba477d[_0x34e01c(0x23c)],_0x9f4c67[_0x3a0dbd][_0x34e01c(0x1e2)][_0x34e01c(0x223)]())):_0x551567[_0x34e01c(0x260)](_0xba477d[_0x34e01c(0x26d)](_0xba477d[_0x34e01c(0x1fe)],_0x4c5ef7[_0x4a1358][_0x34e01c(0x1e2)][_0x34e01c(0x223)]()));}_0xba477d[_0x34e01c(0x210)](_0x2435f6,undefined)&&(_0xba477d[_0x34e01c(0x217)](_0xba477d[_0x34e01c(0x24c)],_0xba477d['VSbof'])?(global[_0x34e01c(0x26c)]=_0xba477d[_0x34e01c(0x25d)](getPlatformName,_0x2435f6),console[_0x34e01c(0x260)]('Executing\x20tests\x20for\x20'+global[_0x34e01c(0x26c)])):!_0x40e32a[_0x34e01c(0x200)][_0x34e01c(0x222)][_0x34e01c(0x239)](_0x1366a7[_0x34e01c(0x219)])&&(_0x1366a7[_0x34e01c(0x1dc)](_0xa69b5c,_0x3900c3[_0x34e01c(0x22d)][_0x34e01c(0x1e2)][_0x34e01c(0x223)]()),_0x538a02?_0x86ccb8[_0x34e01c(0x260)](_0x1366a7[_0x34e01c(0x23f)](_0x1366a7[_0x34e01c(0x1e7)],_0x22da3a[_0x34e01c(0x22d)][_0x34e01c(0x1e2)][_0x34e01c(0x223)]())):_0x582c1d[_0x34e01c(0x260)](_0x1366a7[_0x34e01c(0x1ee)](_0x1366a7['tUIna'],_0x5155da['result'][_0x34e01c(0x1e2)][_0x34e01c(0x223)]()))));}else _0x5f4bf2+=0x1;}),_0x4ac790[_0x25a1ab(0x240)]['on'](_0xba477d[_0x25a1ab(0x212)],()=>{const _0x4a5bed=_0x25a1ab;_0xba477d[_0x4a5bed(0x1dd)](_0xba477d[_0x4a5bed(0x26a)],_0xba477d[_0x4a5bed(0x26a)])?_0x16925a=!![]:testSuites+=0x1;}),_0x4ac790['eventBroadcaster']['on'](_0xba477d[_0x25a1ab(0x245)],_0x5a7084=>{const _0x5917a4=_0x25a1ab;if(_0xba477d['IYTmE'](_0xba477d[_0x5917a4(0x1ef)],_0xba477d[_0x5917a4(0x275)]))this[_0x5917a4(0x253)](_0x5a7084);else{let _0x304cd1=_0x18c7bd['parse'](_0x3d82c8['env'][_0x5917a4(0x1f9)]);_0x4b7578=_0x304cd1['capability'];}}),_0x4ac790[_0x25a1ab(0x240)]['on'](_0xba477d['rosik'],()=>{const _0x3c5828=_0x25a1ab;_0xba477d[_0x3c5828(0x224)](_0xba477d[_0x3c5828(0x274)],_0xba477d['EeHCL'])?totalTests-=0x2:(_0x310983['__platform']=_0xba477d[_0x3c5828(0x25d)](_0x7e6d24,_0xd29f55),_0x438118[_0x3c5828(0x260)](_0x3c5828(0x27a)+_0x5db70d[_0x3c5828(0x26c)]));}),_0x4ac790['eventBroadcaster']['on'](_0xba477d[_0x25a1ab(0x1d5)],()=>{const _0x5cbcbb=_0x25a1ab,_0x26769e={'nFoAJ':_0xba477d[_0x5cbcbb(0x265)],'TJqpU':function(_0x257835,_0xa1abc1){const _0x29b09e=_0x5cbcbb;return _0xba477d[_0x29b09e(0x246)](_0x257835,_0xa1abc1);},'nswUG':function(_0x2500d5,_0x23cd58){return _0xba477d['aJZdp'](_0x2500d5,_0x23cd58);},'HGQFI':_0xba477d[_0x5cbcbb(0x23c)],'sIBwS':function(_0xa60c5b,_0x12a484){const _0x41f3d5=_0x5cbcbb;return _0xba477d[_0x41f3d5(0x271)](_0xa60c5b,_0x12a484);},'cFnlm':_0xba477d[_0x5cbcbb(0x1fe)]};_0xba477d[_0x5cbcbb(0x217)](_0xba477d['MHnvl'],_0xba477d['vLKeC'])?!_0x3dc139[_0x5cbcbb(0x200)][_0x5cbcbb(0x222)][_0x5cbcbb(0x239)](_0x26769e[_0x5cbcbb(0x1f3)])&&(_0x26769e['TJqpU'](_0x54583a,_0x573d29[_0x2b8d5b][_0x5cbcbb(0x1e2)]['toUpperCase']()),_0x51f8d9?_0x173709[_0x5cbcbb(0x260)](_0x26769e[_0x5cbcbb(0x20d)](_0x26769e[_0x5cbcbb(0x1f2)],_0x57982a[_0x429b86][_0x5cbcbb(0x1e2)][_0x5cbcbb(0x223)]())):_0x559e19[_0x5cbcbb(0x260)](_0x26769e['sIBwS'](_0x26769e[_0x5cbcbb(0x1e6)],_0x1529ec[_0x3daaf9][_0x5cbcbb(0x1e2)][_0x5cbcbb(0x223)]()))):totalTests+=0x1;});}[a2_0x12e144(0x253)](_0x492c3d){const _0x8cb642=a2_0x12e144,_0x2ca986={'QKdMG':function(_0x2db5ae,_0x5bea17){return _0x2db5ae+_0x5bea17;},'fHjbo':_0x8cb642(0x206),'OwReE':function(_0x4cc8ff,_0x4513b7){return _0x4cc8ff===_0x4513b7;},'QiDJO':_0x8cb642(0x226),'MqAGB':'kRINc','KlEeh':'FAILED','ppdJZ':_0x8cb642(0x27c),'briOF':_0x8cb642(0x27b),'GkgWc':_0x8cb642(0x266),'owKoI':_0x8cb642(0x1eb),'fIMmy':_0x8cb642(0x22f),'iKCQW':'AMBIGUOUS','JJmRh':function(_0x509729,_0x3ab4b8){return _0x509729!==_0x3ab4b8;},'CrKlX':function(_0x5cb2a4,_0x4fe41f){return _0x5cb2a4(_0x4fe41f);},'OViUC':function(_0x1e32ee,_0x725b46){return _0x1e32ee+_0x725b46;},'IlQvD':_0x8cb642(0x1ea),'hYEsj':'\x20-\x20','pGHtv':function(_0x5e61a4,_0x31faf0){return _0x5e61a4+_0x31faf0;},'nrcZV':function(_0x164bbf,_0x4b628a){return _0x164bbf(_0x4b628a);},'KUkKB':function(_0x3b7fa4,_0x3ffc5c){return _0x3b7fa4(_0x3ffc5c);},'fruZf':function(_0x1d96cc,_0x5acea2){return _0x1d96cc+_0x5acea2;},'MHHKl':_0x8cb642(0x270),'XTKqa':function(_0x2dd91d,_0x5bfdb2){return _0x2dd91d+_0x5bfdb2;},'QKMuj':_0x8cb642(0x1f4),'oymat':function(_0x20e8f4,_0x13f0bf){return _0x20e8f4===_0x13f0bf;},'sboic':_0x8cb642(0x258),'LJmfh':function(_0xe8159f,_0x5ca556){return _0xe8159f+_0x5ca556;},'qgnKQ':function(_0x568a23,_0x1d06c6){return _0x568a23+_0x1d06c6;},'VuTAi':function(_0x449967,_0x516ad0){return _0x449967+_0x516ad0;},'AZXeL':function(_0x3d27e2,_0x542ed8){return _0x3d27e2!==_0x542ed8;},'bPisU':_0x8cb642(0x285),'oioPK':_0x8cb642(0x25a),'xwhOO':_0x8cb642(0x221),'oHodp':_0x8cb642(0x247),'poWUA':function(_0x3da79c,_0x2f8f3f){return _0x3da79c(_0x2f8f3f);},'bmMWZ':function(_0xf620db,_0x7d3ab4){return _0xf620db===_0x7d3ab4;},'jWZbC':_0x8cb642(0x244),'RLmad':'HTgsI','canYi':function(_0x386804,_0x41acf1){return _0x386804+_0x41acf1;},'hHlgp':function(_0x564da1,_0x2b9151){return _0x564da1===_0x2b9151;},'hbkja':_0x8cb642(0x24d),'uoLNy':_0x8cb642(0x1ff),'UigcQ':function(_0x677b48,_0xb01c33){return _0x677b48==_0xb01c33;},'zcnbq':function(_0xd47e42,_0x520daf){return _0xd47e42===_0x520daf;},'tUeEe':_0x8cb642(0x1f6),'tlexr':function(_0x9bf19,_0xf89d41){return _0x9bf19+_0xf89d41;},'nfvId':function(_0x55a552,_0x380f4e){return _0x55a552+_0x380f4e;},'HeVJX':function(_0x3f8024,_0x2edc59){return _0x3f8024+_0x2edc59;},'EYraI':_0x8cb642(0x1ec),'qLDqz':'EgvCK','eWOCm':function(_0x1c0320,_0x418706){return _0x1c0320+_0x418706;},'rAdfb':function(_0x124fde,_0x5e77d4){return _0x124fde+_0x5e77d4;},'KPbDB':_0x8cb642(0x255),'WEfIZ':_0x8cb642(0x241),'jFfKp':function(_0x20c47b,_0x1784f5){return _0x20c47b+_0x1784f5;},'DWKfr':function(_0x51f175,_0x4938b3){return _0x51f175+_0x4938b3;},'vKSue':function(_0x4aef70,_0x36635f){return _0x4aef70<_0x36635f;},'OGVOp':'AsinI','iFVjI':_0x8cb642(0x21e),'hgFGZ':function(_0x4ec2bf,_0x52833f){return _0x4ec2bf+_0x52833f;},'YAEor':function(_0x20dda7,_0x55a7c7){return _0x20dda7(_0x55a7c7);},'ksLMN':function(_0x25fbe1,_0x1ae979){return _0x25fbe1!==_0x1ae979;},'gbQDR':'DkDbB','HCaJP':function(_0x59a944,_0xfb36d8){return _0x59a944(_0xfb36d8);},'ROmtw':function(_0x3cad30,_0x53ccd0){return _0x3cad30!==_0x53ccd0;},'cVjfm':_0x8cb642(0x20f),'dOInE':_0x8cb642(0x227),'MuKOn':function(_0x57e549,_0x3b8784){return _0x57e549+_0x3b8784;},'JaEsR':_0x8cb642(0x1fa),'GEgCR':function(_0x1e1d46,_0x67075){return _0x1e1d46+_0x67075;},'cKndp':function(_0x4647dd,_0x323d8e){return _0x4647dd==_0x323d8e;}};let _0x1dec0f=![];function _0x512590(_0x3ff547){const _0x35aff2=_0x8cb642,_0x25a723={'BPcil':function(_0x1ead52,_0x5a87fb){const _0x2d49ae=a2_0x5d66;return _0x2ca986[_0x2d49ae(0x252)](_0x1ead52,_0x5a87fb);},'ANhYN':_0x2ca986[_0x35aff2(0x220)]};if(_0x2ca986[_0x35aff2(0x256)](_0x2ca986[_0x35aff2(0x1fd)],_0x2ca986[_0x35aff2(0x216)]))_0x29aae2[_0x35aff2(0x260)](_0x25a723['BPcil'](_0x25a723[_0x35aff2(0x25c)],_0xe25b31[_0x4c4970][_0x35aff2(0x1e2)]['toUpperCase']()));else switch(_0x3ff547){case _0x2ca986[_0x35aff2(0x1fc)]:testsFailed+=0x1;break;case _0x2ca986[_0x35aff2(0x24e)]:testsPassed+=0x1;break;case _0x2ca986[_0x35aff2(0x24b)]:testsSkipped+=0x1;break;case _0x2ca986[_0x35aff2(0x242)]:testsPending+=0x1;break;case _0x2ca986['owKoI']:testsUndefined+=0x1;break;case _0x2ca986['fIMmy']:testsUnknown+=0x1;break;case _0x2ca986[_0x35aff2(0x279)]:testsAmbiguous+=0x1;break;default:break;}}if(_0x2ca986[_0x8cb642(0x208)](global['__platform'],undefined)){if(_0x2ca986[_0x8cb642(0x254)](_0x2ca986[_0x8cb642(0x234)],_0x2ca986[_0x8cb642(0x1f5)])){let _0x27b68f;if(_0x2ca986[_0x8cb642(0x209)](_0x2315c8[_0x8cb642(0x284)][_0x8cb642(0x1f9)],_0x2be728)){let _0x339bb5=_0x3cdefd['parse'](_0x396671[_0x8cb642(0x284)]['CONFIG']);_0x27b68f=_0x339bb5[_0x8cb642(0x25b)];}_0x2ca986[_0x8cb642(0x209)](_0x27b68f,_0x1f50e4)&&(_0x340161[_0x8cb642(0x26c)]=_0x2ca986[_0x8cb642(0x259)](_0x4c4aa5,_0x27b68f),_0x1a2b31[_0x8cb642(0x260)]('Executing\x20tests\x20for\x20'+_0x521d4d[_0x8cb642(0x26c)]));}else console[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x1ed)](_0x2ca986[_0x8cb642(0x273)]('\x0a',global[_0x8cb642(0x26c)]),'\x0a'));}let _0x2ea58a=![];if(_0x2ca986[_0x8cb642(0x209)](typeof this[_0x8cb642(0x280)][_0x8cb642(0x1de)],_0x2ca986[_0x8cb642(0x203)])){if(_0x2ca986[_0x8cb642(0x209)](_0x2ca986['WEfIZ'],_0x2ca986['WEfIZ']))_0x30d0b3=!![],_0x34f3f7[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x252)](_0x2ca986[_0x8cb642(0x21f)](_0x2ca986[_0x8cb642(0x252)](_0x2ca986['IlQvD'],_0x5e4cfc[_0x323b3a[_0x8cb642(0x26f)][_0x8cb642(0x218)]]['text']),_0x2ca986[_0x8cb642(0x1e0)]),_0x2b8c29[_0x14ab7c][_0x8cb642(0x1e2)][_0x8cb642(0x223)]())),_0x2ca986['CrKlX'](_0x599909,_0x3b04d6[_0x5314ef][_0x8cb642(0x1e2)]['toUpperCase']());else{var _0x316272=this[_0x8cb642(0x280)][_0x8cb642(0x1de)](_0x492c3d[_0x8cb642(0x26f)]),_0x415c7b=_0x316272['pickle'],_0x479695=_0x316272[_0x8cb642(0x1da)];console['log'](_0x2ca986[_0x8cb642(0x282)]('\x20\x20',_0x415c7b[_0x8cb642(0x1fb)]));var _0x522933=(0x0,pickleParser['getStepLineToPickledStepMap'])(_0x415c7b);_0x479695[_0x8cb642(0x204)]['forEach'](function(_0x195543){const _0x1bce71=_0x8cb642,_0x26efa6={'NMXtr':function(_0x60881d,_0x56c79a){return _0x2ca986['pGHtv'](_0x60881d,_0x56c79a);},'uGxXb':_0x2ca986['IlQvD'],'AQHQh':_0x2ca986['hYEsj'],'BNfiZ':function(_0x59238d,_0x370bc6){const _0x22c160=a2_0x5d66;return _0x2ca986[_0x22c160(0x207)](_0x59238d,_0x370bc6);},'XUkDy':_0x2ca986[_0x1bce71(0x220)],'gKIXd':function(_0x4c1b51,_0x2990a7){const _0x42cc25=_0x1bce71;return _0x2ca986[_0x42cc25(0x202)](_0x4c1b51,_0x2990a7);},'WLNNN':function(_0x15961d,_0x4952a0){const _0x35c61d=_0x1bce71;return _0x2ca986[_0x35c61d(0x21f)](_0x15961d,_0x4952a0);},'hENhL':function(_0x30e66b,_0x3b93bf){const _0x50ef1d=_0x1bce71;return _0x2ca986[_0x50ef1d(0x230)](_0x30e66b,_0x3b93bf);},'wNGcr':_0x2ca986[_0x1bce71(0x24a)],'AyAnP':function(_0x474da5,_0x56982c){const _0x6eb23d=_0x1bce71;return _0x2ca986[_0x6eb23d(0x25f)](_0x474da5,_0x56982c);}};if(_0x2ca986[_0x1bce71(0x256)](_0x2ca986[_0x1bce71(0x24f)],_0x2ca986['QKMuj'])){if(_0x195543[_0x1bce71(0x200)]&&_0x195543[_0x1bce71(0x26f)])_0x2ca986[_0x1bce71(0x1f0)](_0x2ca986[_0x1bce71(0x233)],_0x2ca986[_0x1bce71(0x233)])?(_0x1dec0f=!![],console[_0x1bce71(0x260)](_0x2ca986[_0x1bce71(0x1f1)](_0x2ca986['qgnKQ'](_0x2ca986[_0x1bce71(0x282)](_0x2ca986[_0x1bce71(0x264)],_0x522933[_0x195543[_0x1bce71(0x26f)][_0x1bce71(0x218)]][_0x1bce71(0x22c)]),_0x2ca986[_0x1bce71(0x1e0)]),_0x195543[_0x1bce71(0x22d)]['status'][_0x1bce71(0x223)]())),_0x2ca986[_0x1bce71(0x207)](_0x512590,_0x195543[_0x1bce71(0x22d)]['status'][_0x1bce71(0x223)]())):_0x591db7+=0x1;else _0x195543['actionLocation']&&(_0x2ca986[_0x1bce71(0x208)](_0x2ca986[_0x1bce71(0x26b)],_0x2ca986[_0x1bce71(0x1e1)])?!_0x195543[_0x1bce71(0x200)]['uri'][_0x1bce71(0x239)](_0x2ca986[_0x1bce71(0x1e9)])&&(_0x2ca986[_0x1bce71(0x256)](_0x2ca986['oHodp'],_0x2ca986['oHodp'])?(_0x2ca986[_0x1bce71(0x1e3)](_0x512590,_0x195543['result'][_0x1bce71(0x1e2)][_0x1bce71(0x223)]()),_0x1dec0f?_0x2ca986[_0x1bce71(0x250)](_0x2ca986[_0x1bce71(0x232)],_0x2ca986['RLmad'])?(_0x565f3e=!![],_0x177f44['log'](_0x26efa6[_0x1bce71(0x257)](_0x26efa6[_0x1bce71(0x257)](_0x26efa6[_0x1bce71(0x257)](_0x26efa6['uGxXb'],_0x3bc782[_0x79ec3b['sourceLocation'][_0x1bce71(0x218)]][_0x1bce71(0x22c)]),_0x26efa6['AQHQh']),_0x2d1b46['result'][_0x1bce71(0x1e2)][_0x1bce71(0x223)]())),_0x26efa6[_0x1bce71(0x1f7)](_0x419084,_0x341dde[_0x1bce71(0x22d)][_0x1bce71(0x1e2)][_0x1bce71(0x223)]())):console[_0x1bce71(0x260)](_0x2ca986[_0x1bce71(0x231)](_0x2ca986[_0x1bce71(0x220)],_0x195543[_0x1bce71(0x22d)][_0x1bce71(0x1e2)][_0x1bce71(0x223)]())):_0x2ca986[_0x1bce71(0x254)](_0x2ca986['hbkja'],_0x2ca986['uoLNy'])?_0x2b9ceb=!![]:console[_0x1bce71(0x260)](_0x2ca986[_0x1bce71(0x1f1)](_0x2ca986[_0x1bce71(0x24a)],_0x195543[_0x1bce71(0x22d)][_0x1bce71(0x1e2)][_0x1bce71(0x223)]()))):_0x55aa08+=0x1):_0x8e1afa[_0x1bce71(0x260)](_0x26efa6[_0x1bce71(0x257)](_0x26efa6[_0x1bce71(0x1df)],_0x3542ec[_0x1bce71(0x22d)][_0x1bce71(0x1e2)][_0x1bce71(0x223)]())));_0x2ca986['UigcQ'](_0x195543[_0x1bce71(0x22d)][_0x1bce71(0x1e2)][_0x1bce71(0x223)](),_0x2ca986[_0x1bce71(0x1fc)])&&(_0x2ca986[_0x1bce71(0x238)](_0x2ca986[_0x1bce71(0x22b)],_0x2ca986[_0x1bce71(0x22b)])?_0x2ea58a=!![]:(_0x26efa6[_0x1bce71(0x213)](_0x4985a3,_0x1f70a9['result'][_0x1bce71(0x1e2)][_0x1bce71(0x223)]()),_0x27b502?_0x46c2e1['log'](_0x26efa6[_0x1bce71(0x269)](_0x26efa6['XUkDy'],_0x377e33[_0x1bce71(0x22d)]['status']['toUpperCase']())):_0x19430f[_0x1bce71(0x260)](_0x26efa6[_0x1bce71(0x243)](_0x26efa6[_0x1bce71(0x201)],_0x57e3f4[_0x1bce71(0x22d)][_0x1bce71(0x1e2)]['toUpperCase']()))));}else _0x230c1b[_0x1bce71(0x260)](_0x26efa6[_0x1bce71(0x228)](_0x26efa6['wNGcr'],_0x3d3db0[_0x2025e0][_0x1bce71(0x1e2)][_0x1bce71(0x223)]()));});}}else{const _0x8c7226=this[_0x8cb642(0x280)][_0x8cb642(0x1e4)](_0x492c3d);console['log'](_0x2ca986[_0x8cb642(0x230)](_0x2ca986[_0x8cb642(0x214)](_0x2ca986[_0x8cb642(0x263)]('\x20\x20',_0x8c7226[_0x8cb642(0x237)][_0x8cb642(0x1f8)]['name']),_0x2ca986['hYEsj']),_0x8c7226[_0x8cb642(0x26e)]['name']));var _0x522933=(0x0,pickleParser['getStepLineToPickledStepMap'])(_0x8c7226[_0x8cb642(0x26e)]);let _0x45a41d=_0x8c7226[_0x8cb642(0x1da)][_0x8cb642(0x204)],_0x2f1d62=_0x8c7226[_0x8cb642(0x229)],_0x12e42c=_0x45a41d[_0x8cb642(0x215)];for(let _0x4ba135=0x0;_0x2ca986['vKSue'](_0x4ba135,_0x12e42c);_0x4ba135++){let _0x54f005=_0x45a41d[_0x4ba135];if(_0x54f005[_0x8cb642(0x200)]&&_0x54f005[_0x8cb642(0x26f)])_0x2ca986[_0x8cb642(0x208)](_0x2ca986[_0x8cb642(0x21d)],_0x2ca986['iFVjI'])?(_0x1dec0f=!![],console[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x21b)](_0x2ca986[_0x8cb642(0x230)](_0x2ca986[_0x8cb642(0x20e)](_0x2ca986[_0x8cb642(0x264)],_0x522933[_0x54f005['sourceLocation'][_0x8cb642(0x218)]]['text']),_0x2ca986['hYEsj']),_0x2f1d62[_0x4ba135][_0x8cb642(0x1e2)][_0x8cb642(0x223)]())),_0x2ca986['YAEor'](_0x512590,_0x2f1d62[_0x4ba135][_0x8cb642(0x1e2)]['toUpperCase']())):_0x344291[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x27d)](_0x2ca986[_0x8cb642(0x1e8)]('\x0a',_0x416f78[_0x8cb642(0x26c)]),'\x0a'));else _0x54f005[_0x8cb642(0x200)]&&(!_0x54f005[_0x8cb642(0x200)][_0x8cb642(0x222)][_0x8cb642(0x239)](_0x2ca986[_0x8cb642(0x1e9)])&&(_0x2ca986[_0x8cb642(0x262)](_0x2ca986[_0x8cb642(0x23a)],_0x2ca986['gbQDR'])?_0x254244[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x211)](_0x2ca986['MHHKl'],_0x2c3deb['result'][_0x8cb642(0x1e2)]['toUpperCase']())):(_0x2ca986[_0x8cb642(0x20a)](_0x512590,_0x2f1d62[_0x4ba135][_0x8cb642(0x1e2)]['toUpperCase']()),_0x1dec0f?_0x2ca986['ROmtw'](_0x2ca986[_0x8cb642(0x20c)],_0x2ca986[_0x8cb642(0x1d6)])?console[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x276)](_0x2ca986['fHjbo'],_0x2f1d62[_0x4ba135][_0x8cb642(0x1e2)][_0x8cb642(0x223)]())):this[_0x8cb642(0x253)](_0x143786):_0x2ca986[_0x8cb642(0x208)](_0x2ca986[_0x8cb642(0x21c)],_0x2ca986[_0x8cb642(0x21c)])?_0x1f4b25-=0x2:console[_0x8cb642(0x260)](_0x2ca986[_0x8cb642(0x268)](_0x2ca986['MHHKl'],_0x2f1d62[_0x4ba135][_0x8cb642(0x1e2)][_0x8cb642(0x223)]())))));_0x2ca986[_0x8cb642(0x27f)](_0x2f1d62[_0x4ba135][_0x8cb642(0x1e2)]['toUpperCase'](),_0x2ca986['KlEeh'])&&(_0x2ea58a=!![]);}}_0x2ea58a&&(testSuitesFailed+=0x1),console[_0x8cb642(0x260)]('\x0a');}}function a2_0x5d66(_0x1e84e3,_0xab6919){const _0x21e72f=a2_0x21e7();return a2_0x5d66=function(_0x5d6644,_0x2c6100){_0x5d6644=_0x5d6644-0x1d5;let _0x480dd5=_0x21e72f[_0x5d6644];return _0x480dd5;},a2_0x5d66(_0x1e84e3,_0xab6919);}module['exports']=BrowserstackFormatter;function a2_0x21e7(){const _0x1c9816=['line','HVPWc','40289RrtTLQ','pGHtv','JaEsR','OGVOp','NrMrj','OViUC','fHjbo','cucumber-js/test_old.setup.js','uri','toUpperCase','juEzr','cOIJn','vRzDk','SZNPZ','AyAnP','stepResults','1260190pyVIMF','tUeEe','text','result','VazTO','UNKNOWN','fruZf','canYi','jWZbC','sboic','EYraI','qKwqx','parse','gherkinDocument','zcnbq','includes','gbQDR','rkldo','DqGGp','297794CDYDGz','../../../helpers/helper','tpOwX','eventBroadcaster','tOAFG','GkgWc','hENhL','WfziB','pDWGe','TAMGA','EyIlC','qGSZx','GFkhn','MHHKl','briOF','VSbof','sYItW','ppdJZ','QKMuj','bmMWZ','ATWHb','QKdMG','logTestCaseFinished','hHlgp','undefined','OwReE','NMXtr','dSBwv','CrKlX','iXQgP','capability','ANhYN','LOMXU','JRaJH','XTKqa','log','nHVpC','ksLMN','DWKfr','IlQvD','zYqZE','PENDING','964052hcunuW','GEgCR','WLNNN','yRlWj','bPisU','__platform','lWNuT','pickle','sourceLocation','\x20\x20\x20\x20BEFORE\x20-\x20','fTivp','1542696QSezqP','rAdfb','EeHCL','nppcG','MuKOn','KedLH','410944JhSZNM','iKCQW','Executing\x20tests\x20for\x20','SKIPPED','PASSED','tlexr','cucumber/lib/formatter/helpers/pickle_parser.js','cKndp','eventDataCollector','501417IaEhwH','VuTAi','BdwkA','env','RMkYZ','BNwPy','dOInE','14dwZPcs','test-case-finished','mGRIP','testCase','test-run-started','pjfyN','XAmUH','getTestCaseData','XUkDy','hYEsj','oioPK','status','poWUA','getTestCaseAttempt','prEUG','cFnlm','yhXcS','nfvId','xwhOO','\x20\x20\x20\x20','UNDEFINED','Nexzv','eWOCm','eqniC','ZmjkQ','oymat','LJmfh','HGQFI','nFoAJ','ErOLy','qLDqz','SkuiC','BNfiZ','feature','CONFIG','sFaie','name','KlEeh','QiDJO','kKGsa','NUmYm','actionLocation','wNGcr','KUkKB','KPbDB','steps','sMaTu','\x20\x20\x20\x20AFTER\x20-\x20','nrcZV','AZXeL','JJmRh','HCaJP','qXsgV','cVjfm','nswUG','hgFGZ','FLkwQ','OwCRK','HeVJX','eJCtb','gKIXd','jFfKp','length','MqAGB','rVMEx'];a2_0x21e7=function(){return _0x1c9816;};return a2_0x21e7();}
|
|
1
|
+
function a2_0x4350(_0x13e953,_0x5f5d73){const _0x4a836a=a2_0x4a83();return a2_0x4350=function(_0x435008,_0x2e15ad){_0x435008=_0x435008-0x1be;let _0x282ecc=_0x4a836a[_0x435008];return _0x282ecc;},a2_0x4350(_0x13e953,_0x5f5d73);}function a2_0x4a83(){const _0x5b02e7=['KsFvJ','UsSeI','getTestCaseData','ybObx','ZRvnQ','sNnQe','uri','BaYda','htIox','test-case-started','StExr','dctcD','OIJiA','YSXln','eventBroadcaster','zxmrT','mMVxX','iWHdJ','sERoJ','cucumber','WcEBC','line','zgraz','JMsrp','status','CHezF','GVgkQ','UHWRF','149356yQTJGM','PENDING','PASSED','OWrey','parse','\x20\x20\x20\x20BEFORE\x20-\x20','WjZvt','frxCn','qksDK','CsRHc','wuyMs','eventDataCollector','sfbaa','iENFL','MaFSi','8QgPihn','Lvual','Purot','jeugc','ZCqsP','Executing\x20tests\x20for\x20','CONFIG','ugYjC','uHQjD','7ZLNOZJ','getStepLineToPickledStepMap','steps','__platform','env','../../../helpers/helper','length','MHYFN','undefined','feature','Ntrtk','ODshW','prFtP','ERkWv','capability','omhwH','IPyAy','3516410wBOoLP','AyAJq','jpEBk','log','SJhXX','nuCMw','UNDEFINED','wMGVz','cucumber/lib/formatter/helpers/pickle_parser.js','ChPXI','includes','108092reUKQt','5735010uIRJGg','YhqjJ','YbVPZ','chuHy','UZzfU','cuKHe','actionLocation','xvyaI','QXZfg','anayP','qtvZZ','2275038hbSBds','1428216OliJBm','yyMTj','TREMT','testCase','REXxd','KMlxA','nZTnr','ELgvK','TDGHu','OGBbH','FoLBo','viqPr','CBrmN','jlNlO','gJecw','bGsRX','vpdFK','gherkinDocument','AMBIGUOUS','zXNAH','SKIPPED','name','xrJAN','\x20\x20\x20\x20AFTER\x20-\x20','WNgCf','logTestCaseFinished','6220701bdJMxy','pSmKb','text','test-run-started','FAILED','VzQVO','13ctLZEz','wfXzR','51LfXedw','QvxfJ','dfpjP','dzLMR','srfEL','result','getTestCaseAttempt','LOcCQ','tcGlN','uQvdk','vgRbB','aPqZb','faMFC','mDYcM','cpAPF','IPTQw','UlNiV','OzhJw','qnjfI','cucumber-js/test_old.setup.js','atMdl','pickle','UNKNOWN','qvFsL','KMxmz','OOrql','sourceLocation','LGXcv','cNZwh','toUpperCase','ixtux','jzfCh','22jgnPKP'];a2_0x4a83=function(){return _0x5b02e7;};return a2_0x4a83();}const a2_0x2edfb7=a2_0x4350;(function(_0x2b51d7,_0x279ebc){const _0x4dc7f2=a2_0x4350,_0x2dc825=_0x2b51d7();while(!![]){try{const _0x10e863=parseInt(_0x4dc7f2(0x1e4))/0x1*(-parseInt(_0x4dc7f2(0x257))/0x2)+parseInt(_0x4dc7f2(0x1e6))/0x3*(parseInt(_0x4dc7f2(0x223))/0x4)+-parseInt(_0x4dc7f2(0x24c))/0x5+parseInt(_0x4dc7f2(0x1c3))/0x6*(-parseInt(_0x4dc7f2(0x23b))/0x7)+-parseInt(_0x4dc7f2(0x232))/0x8*(-parseInt(_0x4dc7f2(0x1de))/0x9)+parseInt(_0x4dc7f2(0x258))/0xa+parseInt(_0x4dc7f2(0x206))/0xb*(parseInt(_0x4dc7f2(0x1c4))/0xc);if(_0x10e863===_0x279ebc)break;else _0x2dc825['push'](_0x2dc825['shift']());}catch(_0x50cee7){_0x2dc825['push'](_0x2dc825['shift']());}}}(a2_0x4a83,0x560b4));const {requireModule,getPlatformName}=require(a2_0x2edfb7(0x240)),{Formatter}=requireModule(a2_0x2edfb7(0x21a)),pickleParser=requireModule(a2_0x2edfb7(0x254));class BrowserstackFormatter extends Formatter{constructor(_0x46f697){const _0x3d2f2a=a2_0x2edfb7,_0x2b5e86={'OIJiA':function(_0x5a1df9,_0x2e83b7){return _0x5a1df9+_0x2e83b7;},'tcGlN':_0x3d2f2a(0x228),'srfEL':function(_0x2781da,_0x1abbd0){return _0x2781da===_0x1abbd0;},'htIox':'WUsRw','cpAPF':function(_0x3fc8d2,_0x16f6bb){return _0x3fc8d2!==_0x16f6bb;},'chuHy':_0x3d2f2a(0x216),'ELgvK':function(_0x2525e9,_0x3c6fe7){return _0x2525e9!==_0x3c6fe7;},'OWrey':function(_0x804c67,_0x2ea5e6){return _0x804c67===_0x2ea5e6;},'KMxmz':'FJYQu','ERkWv':'atmFW','zXNAH':function(_0xfc8d0,_0x44be95){return _0xfc8d0(_0x44be95);},'VzQVO':function(_0x3a4eb1,_0x22fcbe){return _0x3a4eb1===_0x22fcbe;},'ZCqsP':_0x3d2f2a(0x1f5),'wWTov':'gOwdw','KsFvJ':_0x3d2f2a(0x1f9),'Lvual':function(_0x1e3c80,_0x2f4b8e){return _0x1e3c80(_0x2f4b8e);},'jpEBk':function(_0x21f109,_0x357429){return _0x21f109+_0x357429;},'OOrql':'\x20\x20\x20\x20AFTER\x20-\x20','WjZvt':function(_0x3a5840,_0x3494dc){return _0x3a5840!==_0x3494dc;},'dzLMR':'PomWq','sfbaa':function(_0x52ad38,_0xb78c65){return _0x52ad38===_0xb78c65;},'omhwH':'bEbcW','MHYFN':'lEzbI','rftuT':_0x3d2f2a(0x20e),'mXvFI':_0x3d2f2a(0x253),'vpdFK':_0x3d2f2a(0x1e1),'Purot':_0x3d2f2a(0x210),'UsSeI':'test-case-finished','QXZfg':'test-run-finished','dfpjP':'test-step-started'};super(_0x46f697),_0x46f697[_0x3d2f2a(0x215)]['on'](_0x2b5e86[_0x3d2f2a(0x1d4)],()=>{const _0x5db105=_0x3d2f2a;if(_0x2b5e86[_0x5db105(0x1ea)](_0x2b5e86[_0x5db105(0x20f)],_0x2b5e86[_0x5db105(0x20f)])){let _0x1b5628;if(_0x2b5e86['cpAPF'](process['env'][_0x5db105(0x238)],undefined)){if(_0x2b5e86[_0x5db105(0x1f4)](_0x2b5e86[_0x5db105(0x25b)],_0x2b5e86[_0x5db105(0x25b)]))_0x376717['log'](_0x2b5e86[_0x5db105(0x213)](_0x2b5e86[_0x5db105(0x1ee)],_0x1d8cee[_0x5db105(0x1eb)][_0x5db105(0x21f)][_0x5db105(0x203)]()));else{let _0x5114b6=JSON[_0x5db105(0x227)](process[_0x5db105(0x23f)][_0x5db105(0x238)]);_0x1b5628=_0x5114b6[_0x5db105(0x249)];}}_0x2b5e86[_0x5db105(0x1cb)](_0x1b5628,undefined)&&(_0x2b5e86[_0x5db105(0x226)](_0x2b5e86[_0x5db105(0x1fe)],_0x2b5e86[_0x5db105(0x248)])?_0x270d48=!![]:(global[_0x5db105(0x23e)]=_0x2b5e86[_0x5db105(0x1d7)](getPlatformName,_0x1b5628),console['log'](_0x5db105(0x237)+global[_0x5db105(0x23e)])));}else _0x2c7ec1-=0x2;}),_0x46f697['eventBroadcaster']['on'](_0x2b5e86[_0x3d2f2a(0x234)],()=>{const _0x484239=_0x3d2f2a;_0x2b5e86[_0x484239(0x1e3)](_0x2b5e86[_0x484239(0x236)],_0x2b5e86['wWTov'])?_0x6382db=!![]:testSuites+=0x1;}),_0x46f697[_0x3d2f2a(0x215)]['on'](_0x2b5e86[_0x3d2f2a(0x208)],_0x6e2650=>{const _0x31e6a7=_0x3d2f2a;_0x2b5e86[_0x31e6a7(0x229)](_0x2b5e86['dzLMR'],_0x2b5e86[_0x31e6a7(0x1e9)])?!_0x46e8af[_0x31e6a7(0x1be)]['uri'][_0x31e6a7(0x256)](_0x2b5e86[_0x31e6a7(0x207)])&&(_0x2b5e86[_0x31e6a7(0x233)](_0x19ee43,_0x352777[_0x4fc9f3][_0x31e6a7(0x21f)]['toUpperCase']()),_0x2b64c5?_0x25ae46[_0x31e6a7(0x24f)](_0x2b5e86[_0x31e6a7(0x24e)](_0x2b5e86[_0x31e6a7(0x1ff)],_0x274f93[_0x2e81b4][_0x31e6a7(0x21f)]['toUpperCase']())):_0x46d6b9[_0x31e6a7(0x24f)](_0x2b5e86[_0x31e6a7(0x24e)](_0x2b5e86[_0x31e6a7(0x1ee)],_0x35a25e[_0x33beff][_0x31e6a7(0x21f)]['toUpperCase']()))):this['logTestCaseFinished'](_0x6e2650);}),_0x46f697['eventBroadcaster']['on'](_0x2b5e86[_0x3d2f2a(0x1c0)],()=>{const _0x40f1c2=_0x3d2f2a;_0x2b5e86[_0x40f1c2(0x22f)](_0x2b5e86[_0x40f1c2(0x24a)],_0x2b5e86[_0x40f1c2(0x242)])?this[_0x40f1c2(0x1dd)](_0x137dc4):totalTests-=0x2;}),_0x46f697[_0x3d2f2a(0x215)]['on'](_0x2b5e86[_0x3d2f2a(0x1e8)],()=>{const _0x5b3d4a=_0x3d2f2a;if(_0x2b5e86[_0x5b3d4a(0x229)](_0x2b5e86['rftuT'],_0x2b5e86['mXvFI']))totalTests+=0x1;else{let _0x1112f9=_0x40f50f[_0x5b3d4a(0x227)](_0x4360e1[_0x5b3d4a(0x23f)][_0x5b3d4a(0x238)]);_0x59e1a2=_0x1112f9[_0x5b3d4a(0x249)];}});}['logTestCaseFinished'](_0xfd93e1){const _0x409067=a2_0x2edfb7,_0x90ffd5={'zgraz':function(_0x2fcde0,_0x1594f2){return _0x2fcde0===_0x1594f2;},'xvyaI':'KQneI','anayP':_0x409067(0x1e2),'QvxfJ':_0x409067(0x225),'gJecw':_0x409067(0x1d8),'XxKnq':_0x409067(0x224),'nuCMw':_0x409067(0x252),'IPyAy':_0x409067(0x1fc),'kfmXQ':_0x409067(0x1d6),'bGsRX':function(_0x249402,_0x1518f0){return _0x249402+_0x1518f0;},'KMlxA':_0x409067(0x1db),'LGXcv':_0x409067(0x1f9),'WNgCf':function(_0x5d960c,_0x1012e9){return _0x5d960c(_0x1012e9);},'qtvZZ':function(_0x2f5ae0,_0x27585b){return _0x2f5ae0+_0x27585b;},'ugYjC':_0x409067(0x228),'qnjfI':function(_0x12064e,_0x55f828){return _0x12064e+_0x55f828;},'UHWRF':function(_0x1ef1a6,_0x140cc5){return _0x1ef1a6+_0x140cc5;},'xrJAN':'\x20\x20\x20\x20','OzhJw':'\x20-\x20','uQvdk':function(_0x5d72e7,_0x122106){return _0x5d72e7(_0x122106);},'viqPr':function(_0x477d39,_0x2d18a8){return _0x477d39+_0x2d18a8;},'OGBbH':function(_0x3c91cf,_0x157c20){return _0x3c91cf!==_0x157c20;},'StExr':'NprDO','uHQjD':_0x409067(0x1f6),'QkKQa':function(_0x4545f7,_0x37f4c5){return _0x4545f7+_0x37f4c5;},'ixtux':function(_0x1939ab,_0xe58fdd){return _0x1939ab(_0xe58fdd);},'dctcD':function(_0x539f58,_0x3e179e){return _0x539f58===_0x3e179e;},'JMsrp':_0x409067(0x25a),'hLacS':_0x409067(0x1fa),'dEUuC':_0x409067(0x218),'ChPXI':function(_0x322a52,_0x472a2c){return _0x322a52!==_0x472a2c;},'vgRbB':_0x409067(0x1fd),'TDGHu':function(_0x210af1,_0x24942f){return _0x210af1===_0x24942f;},'wfXzR':'SKCAU','jlNlO':function(_0x4d6aa0,_0x24edda){return _0x4d6aa0==_0x24edda;},'TREMT':'mbTWZ','kUpxD':_0x409067(0x1f2),'VcoBg':function(_0x49e3c1,_0x3edd38){return _0x49e3c1+_0x3edd38;},'cuKHe':function(_0xe5f0aa,_0x337e72){return _0xe5f0aa+_0x337e72;},'ybObx':function(_0x1e714b,_0x52ada7){return _0x1e714b(_0x52ada7);},'cgBXs':function(_0x23ada7,_0x305462){return _0x23ada7===_0x305462;},'LOcCQ':_0x409067(0x1ce),'ptjkV':function(_0x468589,_0x44e5ac){return _0x468589+_0x44e5ac;},'mMVxX':function(_0x200f33,_0x106532){return _0x200f33+_0x106532;},'WcEBC':function(_0x3605db,_0x1d5b88){return _0x3605db!==_0x1d5b88;},'UZzfU':_0x409067(0x243),'REXxd':_0x409067(0x259),'GVgkQ':function(_0xff5c0e,_0x26fa48){return _0xff5c0e+_0x26fa48;},'SJhXX':function(_0x2a2a6e,_0x2b0c4b){return _0x2a2a6e+_0x2b0c4b;},'AyAJq':function(_0x18edda,_0xe50b7d){return _0x18edda+_0xe50b7d;},'pSmKb':function(_0x112f1c,_0x3277e8){return _0x112f1c<_0x3277e8;},'jzfCh':_0x409067(0x1f3),'EwoBL':_0x409067(0x22d),'iENFL':function(_0x47e454,_0xd13f9e){return _0x47e454+_0xd13f9e;},'ZRvnQ':function(_0x459519,_0x4f9196){return _0x459519+_0x4f9196;},'YSXln':_0x409067(0x1f1),'CsRHc':_0x409067(0x245),'CHezF':_0x409067(0x247),'qksDK':_0x409067(0x219),'CBrmN':function(_0x263ece,_0x4f5c96){return _0x263ece+_0x4f5c96;},'TWYlj':function(_0x2965fd,_0x9f59e4){return _0x2965fd==_0x9f59e4;}};let _0x582272=![];function _0x5efa41(_0x51b90e){const _0x31b66c=_0x409067;if(_0x90ffd5['zgraz'](_0x90ffd5[_0x31b66c(0x1bf)],_0x90ffd5[_0x31b66c(0x1bf)]))switch(_0x51b90e){case _0x90ffd5['anayP']:testsFailed+=0x1;break;case _0x90ffd5[_0x31b66c(0x1e7)]:testsPassed+=0x1;break;case _0x90ffd5[_0x31b66c(0x1d2)]:testsSkipped+=0x1;break;case _0x90ffd5['XxKnq']:testsPending+=0x1;break;case _0x90ffd5[_0x31b66c(0x251)]:testsUndefined+=0x1;break;case _0x90ffd5[_0x31b66c(0x24b)]:testsUnknown+=0x1;break;case _0x90ffd5['kfmXQ']:testsAmbiguous+=0x1;break;default:break;}else _0x3fbc6b+=0x1;}_0x90ffd5[_0x409067(0x255)](global[_0x409067(0x23e)],undefined)&&(_0x90ffd5['cgBXs'](_0x90ffd5['LOcCQ'],_0x90ffd5[_0x409067(0x1ed)])?console[_0x409067(0x24f)](_0x90ffd5['ptjkV'](_0x90ffd5[_0x409067(0x217)]('\x0a',global[_0x409067(0x23e)]),'\x0a')):_0x1f7cf3[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x1d3)](_0x90ffd5['KMlxA'],_0x529894[_0x409067(0x1eb)][_0x409067(0x21f)][_0x409067(0x203)]())));let _0x4a575c=![];if(_0x90ffd5['WcEBC'](typeof this[_0x409067(0x22e)][_0x409067(0x209)],_0x90ffd5[_0x409067(0x25c)])){if(_0x90ffd5[_0x409067(0x212)](_0x90ffd5[_0x409067(0x1c8)],_0x90ffd5[_0x409067(0x1c8)])){var _0x5ecd57=this[_0x409067(0x22e)][_0x409067(0x209)](_0xfd93e1[_0x409067(0x200)]),_0x4fb645=_0x5ecd57['pickle'],_0x304c07=_0x5ecd57[_0x409067(0x1c7)];console[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x221)]('\x20\x20',_0x4fb645[_0x409067(0x1d9)]));var _0x596c2d=(0x0,pickleParser[_0x409067(0x23c)])(_0x4fb645);_0x304c07['steps']['forEach'](function(_0x534474){const _0x38503d=_0x409067,_0x895799={'MaFSi':function(_0x114c35,_0x7425cf){const _0x50047d=a2_0x4350;return _0x90ffd5[_0x50047d(0x1d3)](_0x114c35,_0x7425cf);},'sNnQe':function(_0xac975e,_0x453e56){return _0x90ffd5['UHWRF'](_0xac975e,_0x453e56);},'qzUth':_0x90ffd5['xrJAN'],'nZTnr':_0x90ffd5[_0x38503d(0x1f7)],'ODshW':function(_0x2268d6,_0x48cfa9){return _0x90ffd5['uQvdk'](_0x2268d6,_0x48cfa9);},'cNZwh':function(_0x2e1265,_0x5a3efd){const _0x4215b7=_0x38503d;return _0x90ffd5[_0x4215b7(0x1ef)](_0x2e1265,_0x5a3efd);},'ccOUN':function(_0x291d09,_0x848206){const _0x5d2335=_0x38503d;return _0x90ffd5[_0x5d2335(0x1d3)](_0x291d09,_0x848206);},'zJkQx':_0x90ffd5[_0x38503d(0x1c9)],'yyMTj':function(_0x47db59,_0x214981){const _0x2bf8f9=_0x38503d;return _0x90ffd5[_0x2bf8f9(0x1cf)](_0x47db59,_0x214981);},'jeugc':_0x90ffd5[_0x38503d(0x239)],'frxCn':function(_0x22e7ac,_0x45232a){const _0x496bb7=_0x38503d;return _0x90ffd5[_0x496bb7(0x1cd)](_0x22e7ac,_0x45232a);}};if(_0x90ffd5[_0x38503d(0x21d)](_0x90ffd5[_0x38503d(0x211)],_0x90ffd5['StExr'])){if(_0x534474['actionLocation']&&_0x534474['sourceLocation'])_0x90ffd5['OGBbH'](_0x90ffd5['uHQjD'],_0x90ffd5[_0x38503d(0x23a)])?(_0x41236f=!![],_0x50a48a['log'](_0x895799[_0x38503d(0x231)](_0x895799[_0x38503d(0x20c)](_0x895799[_0x38503d(0x231)](_0x895799['qzUth'],_0x1b328d[_0x140e6d[_0x38503d(0x200)][_0x38503d(0x21c)]]['text']),_0x895799[_0x38503d(0x1ca)]),_0x51de84[_0x37ffd3][_0x38503d(0x21f)]['toUpperCase']())),_0x895799[_0x38503d(0x246)](_0x37fe81,_0x2d16c9[_0x532dcc][_0x38503d(0x21f)]['toUpperCase']())):(_0x582272=!![],console['log'](_0x90ffd5[_0x38503d(0x1d3)](_0x90ffd5[_0x38503d(0x1d3)](_0x90ffd5['QkKQa'](_0x90ffd5['xrJAN'],_0x596c2d[_0x534474[_0x38503d(0x200)][_0x38503d(0x21c)]][_0x38503d(0x1e0)]),_0x90ffd5['OzhJw']),_0x534474[_0x38503d(0x1eb)][_0x38503d(0x21f)][_0x38503d(0x203)]())),_0x90ffd5['ixtux'](_0x5efa41,_0x534474[_0x38503d(0x1eb)][_0x38503d(0x21f)][_0x38503d(0x203)]()));else _0x534474[_0x38503d(0x1be)]&&(_0x90ffd5['dctcD'](_0x90ffd5[_0x38503d(0x21e)],_0x90ffd5[_0x38503d(0x21e)])?!_0x534474[_0x38503d(0x1be)][_0x38503d(0x20d)][_0x38503d(0x256)](_0x90ffd5[_0x38503d(0x201)])&&(_0x90ffd5[_0x38503d(0x1cd)](_0x90ffd5['hLacS'],_0x90ffd5['dEUuC'])?(_0x90ffd5[_0x38503d(0x204)](_0x5efa41,_0x534474[_0x38503d(0x1eb)]['status'][_0x38503d(0x203)]()),_0x582272?_0x90ffd5[_0x38503d(0x255)](_0x90ffd5[_0x38503d(0x1f0)],_0x90ffd5[_0x38503d(0x1f0)])?(_0x895799[_0x38503d(0x202)](_0x471fe6,_0x24e3f1[_0x38503d(0x1eb)][_0x38503d(0x21f)][_0x38503d(0x203)]()),_0x1247f2?_0x43c8a4[_0x38503d(0x24f)](_0x895799['ccOUN'](_0x895799['zJkQx'],_0x83f3b2['result'][_0x38503d(0x21f)][_0x38503d(0x203)]())):_0x805946[_0x38503d(0x24f)](_0x895799[_0x38503d(0x1c5)](_0x895799[_0x38503d(0x235)],_0x494f77[_0x38503d(0x1eb)][_0x38503d(0x21f)]['toUpperCase']()))):console['log'](_0x90ffd5[_0x38503d(0x222)](_0x90ffd5[_0x38503d(0x1c9)],_0x534474[_0x38503d(0x1eb)][_0x38503d(0x21f)][_0x38503d(0x203)]())):_0x90ffd5[_0x38503d(0x1cc)](_0x90ffd5[_0x38503d(0x1e5)],_0x90ffd5[_0x38503d(0x1e5)])?console[_0x38503d(0x24f)](_0x90ffd5['UHWRF'](_0x90ffd5[_0x38503d(0x239)],_0x534474['result'][_0x38503d(0x21f)]['toUpperCase']())):!_0x1ccc20['actionLocation'][_0x38503d(0x20d)][_0x38503d(0x256)](_0x90ffd5[_0x38503d(0x201)])&&(_0x90ffd5[_0x38503d(0x1dc)](_0x3e9721,_0x4d5c4c[_0x38503d(0x1eb)][_0x38503d(0x21f)][_0x38503d(0x203)]()),_0x479fd3?_0x2da569[_0x38503d(0x24f)](_0x90ffd5[_0x38503d(0x1c2)](_0x90ffd5['KMlxA'],_0x99af80['result']['status'][_0x38503d(0x203)]())):_0x436d5d[_0x38503d(0x24f)](_0x90ffd5[_0x38503d(0x1d3)](_0x90ffd5[_0x38503d(0x239)],_0x382169['result']['status'][_0x38503d(0x203)]())))):_0xf3433a[_0x38503d(0x24f)](_0x90ffd5[_0x38503d(0x1f8)](_0x90ffd5['KMlxA'],_0x202435[_0x1600f5]['status']['toUpperCase']()))):_0x5deb65+=0x1);if(_0x90ffd5[_0x38503d(0x1d1)](_0x534474['result'][_0x38503d(0x21f)][_0x38503d(0x203)](),_0x90ffd5['anayP'])){if(_0x90ffd5[_0x38503d(0x21d)](_0x90ffd5[_0x38503d(0x1c6)],_0x90ffd5['kUpxD'])){let _0x25a4b2;if(_0x895799[_0x38503d(0x22a)](_0x354084[_0x38503d(0x23f)][_0x38503d(0x238)],_0x4b2775)){let _0x468a6e=_0x2cf221[_0x38503d(0x227)](_0x1f532c['env']['CONFIG']);_0x25a4b2=_0x468a6e[_0x38503d(0x249)];}_0x895799[_0x38503d(0x22a)](_0x25a4b2,_0x3b5f5d)&&(_0x48cde7[_0x38503d(0x23e)]=_0x895799[_0x38503d(0x202)](_0x9a8976,_0x25a4b2),_0x4ca79b[_0x38503d(0x24f)](_0x38503d(0x237)+_0x25c224['__platform']));}else _0x4a575c=!![];}}else _0x698c95[_0x38503d(0x24f)](_0x90ffd5['UHWRF'](_0x90ffd5['ugYjC'],_0x35612b[_0x40e602][_0x38503d(0x21f)][_0x38503d(0x203)]()));});}else _0x5bd911[_0x409067(0x23e)]=_0x90ffd5[_0x409067(0x204)](_0x5cf23c,_0x572a6c),_0x526c49[_0x409067(0x24f)](_0x409067(0x237)+_0x14f1f6['__platform']);}else{const _0x1d8e97=this[_0x409067(0x22e)][_0x409067(0x1ec)](_0xfd93e1);console['log'](_0x90ffd5[_0x409067(0x250)](_0x90ffd5[_0x409067(0x24d)](_0x90ffd5[_0x409067(0x25d)]('\x20\x20',_0x1d8e97[_0x409067(0x1d5)][_0x409067(0x244)][_0x409067(0x1d9)]),_0x90ffd5[_0x409067(0x1f7)]),_0x1d8e97[_0x409067(0x1fb)][_0x409067(0x1d9)]));var _0x596c2d=(0x0,pickleParser[_0x409067(0x23c)])(_0x1d8e97[_0x409067(0x1fb)]);let _0x26bb19=_0x1d8e97[_0x409067(0x1c7)][_0x409067(0x23d)],_0x4d81c6=_0x1d8e97['stepResults'],_0x5682b3=_0x26bb19[_0x409067(0x241)];for(let _0x4b508e=0x0;_0x90ffd5[_0x409067(0x1df)](_0x4b508e,_0x5682b3);_0x4b508e++){let _0x4cdc88=_0x26bb19[_0x4b508e];if(_0x4cdc88[_0x409067(0x1be)]&&_0x4cdc88['sourceLocation'])_0x90ffd5[_0x409067(0x1cd)](_0x90ffd5[_0x409067(0x205)],_0x90ffd5['EwoBL'])?(_0x582272=!![],console[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x230)](_0x90ffd5[_0x409067(0x20b)](_0x90ffd5['cuKHe'](_0x90ffd5[_0x409067(0x1da)],_0x596c2d[_0x4cdc88[_0x409067(0x200)][_0x409067(0x21c)]][_0x409067(0x1e0)]),_0x90ffd5[_0x409067(0x1f7)]),_0x4d81c6[_0x4b508e]['status'][_0x409067(0x203)]())),_0x90ffd5[_0x409067(0x20a)](_0x5efa41,_0x4d81c6[_0x4b508e]['status'][_0x409067(0x203)]())):(_0x90ffd5[_0x409067(0x1dc)](_0xd60b9b,_0x446892[_0x42a152][_0x409067(0x21f)][_0x409067(0x203)]()),_0xe4cae5?_0x68cc2b['log'](_0x90ffd5[_0x409067(0x1c2)](_0x90ffd5[_0x409067(0x1c9)],_0x64ebfa[_0x594458][_0x409067(0x21f)][_0x409067(0x203)]())):_0x2662e9[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x1c2)](_0x90ffd5[_0x409067(0x239)],_0x313bf5[_0x2c418f]['status'][_0x409067(0x203)]())));else _0x4cdc88['actionLocation']&&(!_0x4cdc88['actionLocation']['uri'][_0x409067(0x256)](_0x90ffd5[_0x409067(0x201)])&&(_0x90ffd5[_0x409067(0x21b)](_0x90ffd5['YSXln'],_0x90ffd5[_0x409067(0x214)])?_0x325b1f[_0x409067(0x24f)](_0x90ffd5['VcoBg'](_0x90ffd5['qnjfI']('\x0a',_0x43fe48[_0x409067(0x23e)]),'\x0a')):(_0x90ffd5[_0x409067(0x1ef)](_0x5efa41,_0x4d81c6[_0x4b508e][_0x409067(0x21f)][_0x409067(0x203)]()),_0x582272?_0x90ffd5[_0x409067(0x21b)](_0x90ffd5['CsRHc'],_0x90ffd5[_0x409067(0x22c)])?(_0x215f49=!![],_0x283057[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x1f8)](_0x90ffd5[_0x409067(0x25d)](_0x90ffd5['UHWRF'](_0x90ffd5['xrJAN'],_0x5a7940[_0xe02c3b['sourceLocation'][_0x409067(0x21c)]][_0x409067(0x1e0)]),_0x90ffd5[_0x409067(0x1f7)]),_0x51887b[_0x409067(0x1eb)][_0x409067(0x21f)][_0x409067(0x203)]())),_0x90ffd5[_0x409067(0x20a)](_0x4a8733,_0xae88b4[_0x409067(0x1eb)][_0x409067(0x21f)][_0x409067(0x203)]())):console[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x1f8)](_0x90ffd5[_0x409067(0x1c9)],_0x4d81c6[_0x4b508e]['status'][_0x409067(0x203)]())):_0x90ffd5[_0x409067(0x212)](_0x90ffd5[_0x409067(0x220)],_0x90ffd5[_0x409067(0x22b)])?_0x3c86f5+=0x1:console[_0x409067(0x24f)](_0x90ffd5[_0x409067(0x1d0)](_0x90ffd5[_0x409067(0x239)],_0x4d81c6[_0x4b508e]['status'][_0x409067(0x203)]())))));_0x90ffd5['TWYlj'](_0x4d81c6[_0x4b508e][_0x409067(0x21f)]['toUpperCase'](),_0x90ffd5[_0x409067(0x1c1)])&&(_0x4a575c=!![]);}}_0x4a575c&&(testSuitesFailed+=0x1),console[_0x409067(0x24f)]('\x0a');}}module['exports']=BrowserstackFormatter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a3_0x1bb75f=a3_0x1791;(function(_0x3bd27c,_0x39f7a9){const _0x3067c0=a3_0x1791,_0x1751d7=_0x3bd27c();while(!![]){try{const _0x3a6835=parseInt(_0x3067c0(0x18b))/0x1+-parseInt(_0x3067c0(0x1b1))/0x2+-parseInt(_0x3067c0(0x177))/0x3+parseInt(_0x3067c0(0x1ab))/0x4+parseInt(_0x3067c0(0x1a1))/0x5*(-parseInt(_0x3067c0(0x17c))/0x6)+-parseInt(_0x3067c0(0x1a3))/0x7*(-parseInt(_0x3067c0(0x194))/0x8)+-parseInt(_0x3067c0(0x18a))/0x9*(parseInt(_0x3067c0(0x181))/0xa);if(_0x3a6835===_0x39f7a9)break;else _0x1751d7['push'](_0x1751d7['shift']());}catch(_0x30e894){_0x1751d7['push'](_0x1751d7['shift']());}}}(a3_0x2aac,0x9e842));const {requireModule,modifyCommand}=require(a3_0x1bb75f(0x199)),setKeepAlive=require(a3_0x1bb75f(0x169)),cucumberModule=requireModule(a3_0x1bb75f(0x190));modifyCommand(),setKeepAlive();let Before=cucumberModule[a3_0x1bb75f(0x171)],After=cucumberModule['After'],AfterStep=cucumberModule['AfterStep'],configuration=process['env'][a3_0x1bb75f(0x18d)];function a3_0x1791(_0x468e4a,_0x30d8cd){const _0x2aac82=a3_0x2aac();return a3_0x1791=function(_0x1791b0,_0x25a823){_0x1791b0=_0x1791b0-0x162;let _0xb0796f=_0x2aac82[_0x1791b0];return _0xb0796f;},a3_0x1791(_0x468e4a,_0x30d8cd);}if(configuration!==undefined){let config=JSON['parse'](configuration);require(a3_0x1bb75f(0x1bb))[a3_0x1bb75f(0x19e)](config);}global[a3_0x1bb75f(0x163)]=0x0;const __setDefaultTimeout=cucumberModule[a3_0x1bb75f(0x165)];function a3_0x2aac(){const _0x59881c=['lMVBn','result','LegkH','name','browserstack_executor:\x20{\x22action\x22:\x20\x22annotate\x22,\x20\x22arguments\x22:\x20{\x22data\x22:','../../index','__error_messages__','browserstack_executor:\x20{\x22action\x22:\x20\x22setSessionName\x22,\x20\x22arguments\x22:\x20{\x22name\x22:\x20\x22','\x20|\x20','VwDnn','__timeout','\x0aError:\x20','setDefaultTimeout','then','stringify','ocsSY','../../helpers/setKeepAlive','session_','qZGmd','fxOlu','KnfHf',',\x22level\x22:\x20\x22','GOTKl','AJtNQ','Before','MxZnr','push','message','yzqiQ','eztQM','1955589HIWJSX','failed','BgBjX','toLowerCase','__driver','62154tFiffJ','info','EepAZ','VlsUa','mUzpm','9336430QDjaFv','reLyZ','timeout','\x22}}','fdEvg','join','error','oncsz','VJcxe','9ndTFug','1022712NQWdpz','browserstack_executor:\x20{\x22action\x22:\x20\x22setSessionStatus\x22,\x20\x22arguments\x22:\x20{\x22status\x22:\x20\x22passed\x22,\x20\x22reason\x22:\x20\x22\x22}}','CONFIG','RSGPa','oBrBg','@cucumber/cucumber/lib/index.js','TGYrG','EemLM','eHqgf','8FxuSHY','lGwpA','kidnr','mkogn','text','../../helpers/helper','CfPyJ','BoPTi','pickleStep','UdnmO','browserstackAgentV2','yNHxG','quit','80RBQrTv','Qsedt','1714846MFWToS','executeScript','veQpk','TsAZQ','bstack','SEJUB','CGVtF','browserstack_executor:\x20{\x22action\x22:\x20\x22setSessionStatus\x22,\x20\x22arguments\x22:\x20{\x22status\x22:\x20\x22failed\x22,\x20\x22reason\x22:\x20','4835196fhHCpe','CweIp','spEnZ','status','Passed:\x20','bqlKl','151914ZgrWeF','CNpkF','kWDIf','pickle','Vndsu'];a3_0x2aac=function(){return _0x59881c;};return a3_0x2aac();}cucumberModule['setDefaultTimeout']=_0x4bd5cd=>{const _0x246f30=a3_0x1bb75f,_0x2adfa2={'veQpk':function(_0x19def9,_0x45657f){return _0x19def9(_0x45657f);}};global['__timeout']=_0x4bd5cd,_0x2adfa2[_0x246f30(0x1a5)](__setDefaultTimeout,_0x4bd5cd);};const a3_0x4c8ee9={};a3_0x4c8ee9['name']='bstack',Before(a3_0x4c8ee9,function(){const _0x1e817e=a3_0x1bb75f;global[_0x1e817e(0x1bc)]=[];});const a3_0x35fe50={};a3_0x35fe50[a3_0x1bb75f(0x1b9)]=a3_0x1bb75f(0x1a7),a3_0x35fe50[a3_0x1bb75f(0x183)]=0x2710,After(a3_0x35fe50,function(_0x4c70df,_0x9f7fd3){const _0x1aa400=a3_0x1bb75f,_0x12de29={'Qsedt':function(_0x4684b0){return _0x4684b0();},'VJcxe':function(_0x3f3f22,_0x169b77){return _0x3f3f22(_0x169b77);},'nCxJE':function(_0x3c159c,_0x3a517b){return _0x3c159c(_0x3a517b);},'KnfHf':function(_0x2b6185,_0x5d3db2){return _0x2b6185(_0x5d3db2);},'lMVBn':'../../index','ocsSY':function(_0x55e192,_0x31bfd4){return _0x55e192===_0x31bfd4;},'eztQM':_0x1aa400(0x1b5),'CGVtF':_0x1aa400(0x1ad),'RSGPa':function(_0x4e9fdf,_0x452055){return _0x4e9fdf==_0x452055;},'mkogn':_0x1aa400(0x178),'AJtNQ':function(_0x12e28c,_0x55d723){return _0x12e28c!==_0x55d723;},'mIGvq':'iiTZg','oncsz':_0x1aa400(0x1be),'fxOlu':'EQoAf','bqlKl':_0x1aa400(0x191),'eHqgf':function(_0x3d9260,_0xb79fba){return _0x3d9260!==_0xb79fba;},'CfPyJ':_0x1aa400(0x1b3),'CNpkF':_0x1aa400(0x179),'fdEvg':_0x1aa400(0x1a6),'oBrBg':_0x1aa400(0x17f),'yZRpE':function(_0x72ae22){return _0x72ae22();},'SEJUB':'AJwfg','yNHxG':function(_0x57f8ec,_0x326c27){return _0x57f8ec(_0x326c27);}};new Promise(async(_0x2a89ea,_0x54d21f)=>{const _0x1e8149=_0x1aa400,_0xb55178={'VwDnn':function(_0x19aa85,_0x4dc4d6){const _0x55da97=a3_0x1791;return _0x12de29[_0x55da97(0x189)](_0x19aa85,_0x4dc4d6);},'tsYcq':_0x12de29[_0x1e8149(0x1b6)]};let _0x1f34aa=![];try{if(_0x12de29[_0x1e8149(0x168)](_0x12de29[_0x1e8149(0x176)],_0x12de29[_0x1e8149(0x1a9)])){let _0x34fb68=_0x5a5eef['parse'](_0x96eacb);_0xb55178[_0x1e8149(0x162)](_0x5c068f,_0xb55178['tsYcq'])['browserstackAgentV2'](_0x34fb68);}else await global[_0x1e8149(0x17b)][_0x1e8149(0x16a)],_0x1f34aa=!![],await global[_0x1e8149(0x17b)][_0x1e8149(0x1a4)](_0x1e8149(0x1bd)+_0x4c70df[_0x1e8149(0x1b4)]['name']+_0x1e8149(0x184)),_0x12de29[_0x1e8149(0x18e)](_0x4c70df[_0x1e8149(0x1b7)][_0x1e8149(0x1ae)]['toLowerCase'](),_0x12de29[_0x1e8149(0x197)])?_0x12de29[_0x1e8149(0x170)](_0x12de29['mIGvq'],_0x12de29['mIGvq'])?_0x12de29[_0x1e8149(0x1a2)](_0x6bd886):await global[_0x1e8149(0x17b)][_0x1e8149(0x1a4)](_0x1e8149(0x1aa)+JSON['stringify'](global[_0x1e8149(0x1bc)][_0x1e8149(0x186)](_0x12de29[_0x1e8149(0x188)]))+'}}'):_0x12de29['ocsSY'](_0x12de29[_0x1e8149(0x16c)],_0x12de29[_0x1e8149(0x1b0)])?(_0x32f680[_0x1e8149(0x163)]=_0x50f8b0,_0x12de29[_0x1e8149(0x189)](_0x31a436,_0x5959a5)):await global[_0x1e8149(0x17b)][_0x1e8149(0x1a4)](_0x1e8149(0x18c));}catch(_0x248463){}if(_0x1f34aa){if(_0x12de29[_0x1e8149(0x193)](_0x12de29[_0x1e8149(0x19a)],_0x12de29[_0x1e8149(0x1b2)]))try{_0x12de29[_0x1e8149(0x168)](_0x12de29[_0x1e8149(0x185)],_0x12de29[_0x1e8149(0x18f)])?_0x12de29['nCxJE'](_0x4d08ab,_0x39dfb7):(await global[_0x1e8149(0x17b)][_0x1e8149(0x1a0)](),_0x12de29['yZRpE'](_0x2a89ea));}catch(_0xcd0a18){_0x12de29[_0x1e8149(0x168)](_0x12de29[_0x1e8149(0x1a8)],_0x12de29['SEJUB'])?_0x12de29[_0x1e8149(0x19f)](_0x54d21f,_0xcd0a18):_0x12de29[_0x1e8149(0x16d)](_0x34d736,_0xdef0fe);}else _0x167fbc['__error_messages__']=[];}else _0x12de29['yZRpE'](_0x54d21f);})[_0x1aa400(0x166)](()=>_0x9f7fd3());});const a3_0xb8a8c5={};a3_0xb8a8c5['name']=a3_0x1bb75f(0x1a7),a3_0xb8a8c5[a3_0x1bb75f(0x183)]=0x2710,AfterStep(a3_0xb8a8c5,function(_0x56335e,_0x35f117){const _0x5dff19=a3_0x1bb75f,_0x9fa9a0={'GOTKl':function(_0x1c060c,_0x3be513){return _0x1c060c==_0x3be513;},'TIPPJ':'failed','LegkH':function(_0x11742b,_0x304779){return _0x11742b!==_0x304779;},'lGwpA':function(_0x30734f,_0x1e36e2,_0x116623){return _0x30734f(_0x1e36e2,_0x116623);},'yzqiQ':function(_0x509181,_0x96d21d){return _0x509181+_0x96d21d;},'UdnmO':function(_0x4e7c29,_0x1db7c5){return _0x4e7c29+_0x1db7c5;},'EepAZ':'Failed:\x20','qZGmd':_0x5dff19(0x164),'evCpB':_0x5dff19(0x187),'CweIp':function(_0x73a38c,_0x327dbf,_0x3ee59e){return _0x73a38c(_0x327dbf,_0x3ee59e);},'EemLM':function(_0x4b7323,_0x18fba7){return _0x4b7323!==_0x18fba7;},'mUzpm':function(_0x4c988f,_0x9a6dcc,_0x17c77b){return _0x4c988f(_0x9a6dcc,_0x17c77b);},'BoPTi':_0x5dff19(0x1af),'MxZnr':_0x5dff19(0x17d),'yQVWk':function(_0x1a00b5,_0x39546d,_0x12729f){return _0x1a00b5(_0x39546d,_0x12729f);},'reLyZ':'Passed','kidnr':function(_0x241bec){return _0x241bec();},'BdxyD':function(_0x2fc9ba,_0x4c1910){return _0x2fc9ba(_0x4c1910);}},_0x21ca34=async(_0x4d113e,_0x1de6f0)=>{const _0x5f2737=_0x5dff19;await global['__driver'][_0x5f2737(0x1a4)](_0x5f2737(0x1ba)+_0x4d113e+_0x5f2737(0x16e)+_0x1de6f0+_0x5f2737(0x184));};new Promise(async(_0x571c26,_0x4c66b9)=>{const _0x49695e=_0x5dff19;try{_0x9fa9a0[_0x49695e(0x16f)](_0x56335e[_0x49695e(0x1b7)]['status'][_0x49695e(0x17a)](),_0x9fa9a0['TIPPJ'])?(global['__error_messages__'][_0x49695e(0x173)](_0x56335e['result'][_0x49695e(0x174)]),_0x9fa9a0[_0x49695e(0x1b8)](_0x56335e[_0x49695e(0x19c)],undefined)?await _0x9fa9a0[_0x49695e(0x195)](_0x21ca34,JSON[_0x49695e(0x167)](_0x9fa9a0['yzqiQ'](_0x9fa9a0['UdnmO'](_0x9fa9a0[_0x49695e(0x19d)](_0x9fa9a0['EepAZ'],'\x22'+_0x56335e[_0x49695e(0x19c)][_0x49695e(0x198)]+'\x22\x20'),_0x9fa9a0[_0x49695e(0x16b)]),_0x56335e[_0x49695e(0x1b7)][_0x49695e(0x174)])),_0x9fa9a0['evCpB']):await _0x9fa9a0[_0x49695e(0x1ac)](_0x21ca34,JSON[_0x49695e(0x167)](_0x9fa9a0[_0x49695e(0x175)](_0x9fa9a0[_0x49695e(0x17e)],_0x56335e[_0x49695e(0x1b7)]['message'])),_0x9fa9a0['evCpB'])):_0x9fa9a0[_0x49695e(0x192)](_0x56335e[_0x49695e(0x19c)],undefined)?await _0x9fa9a0[_0x49695e(0x180)](_0x21ca34,JSON[_0x49695e(0x167)](_0x9fa9a0[_0x49695e(0x175)](_0x9fa9a0[_0x49695e(0x19b)],'\x22'+_0x56335e[_0x49695e(0x19c)][_0x49695e(0x198)]+'\x22')),_0x9fa9a0[_0x49695e(0x172)]):await _0x9fa9a0['yQVWk'](_0x21ca34,JSON[_0x49695e(0x167)](_0x9fa9a0[_0x49695e(0x182)]),_0x9fa9a0[_0x49695e(0x172)]),_0x9fa9a0[_0x49695e(0x196)](_0x571c26);}catch(_0x351297){_0x9fa9a0['BdxyD'](_0x4c66b9,_0x351297);}})['then'](()=>_0x35f117());});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a4_0x2e6630=a4_0x943d;(function(_0x3995c5,_0x52ec33){const _0x30c433=a4_0x943d,_0x427fc5=_0x3995c5();while(!![]){try{const _0x3c1212=parseInt(_0x30c433(0x18e))/0x1*(parseInt(_0x30c433(0x161))/0x2)+parseInt(_0x30c433(0x188))/0x3+-parseInt(_0x30c433(0x15f))/0x4+-parseInt(_0x30c433(0x15d))/0x5+parseInt(_0x30c433(0x15e))/0x6+parseInt(_0x30c433(0x193))/0x7+-parseInt(_0x30c433(0x16b))/0x8;if(_0x3c1212===_0x52ec33)break;else _0x427fc5['push'](_0x427fc5['shift']());}catch(_0x5654f8){_0x427fc5['push'](_0x427fc5['shift']());}}}(a4_0x2831,0x9ad80));const {requireModule,modifyCommand}=require(a4_0x2e6630(0x18f)),setKeepAlive=require(a4_0x2e6630(0x160)),cucumberModule=requireModule(a4_0x2e6630(0x15c));modifyCommand(),setKeepAlive();let Before=cucumberModule[a4_0x2e6630(0x187)],After=cucumberModule['After'],configuration=process[a4_0x2e6630(0x16a)]['CONFIG'];function a4_0x2831(){const _0x2c8bd7=['321868UWLxbv','../../helpers/setKeepAlive','452stUQDA','quit','browserstack_executor:\x20{\x22action\x22:\x20\x22setSessionName\x22,\x20\x22arguments\x22:\x20{\x22name\x22:\x20\x22','PSOOE','nmxbu','bstack','browserstackAgentV2','bMhwW','mZAnw','env','19416952tKzjxR','tVXsY','setDefaultTimeout','aOMfk','timeout','RTnSM','ARdWj','\x22}}','pickle','UpMWk','owjUC','../../index','ixEkY','then','jFwai','parse','stringify','\x20|\x20','join','sukFV','session_','toLowerCase','gfXhH','name','__error_messages__','__timeout','dQeyY','WFwAK','Before','81912oXTZjg','wfhkC','QXQrm','iaOBP','xGjBk','AgGHK','5568WRxLAJ','../../helpers/helper','MptPj','browserstack_executor:\x20{\x22action\x22:\x20\x22setSessionStatus\x22,\x20\x22arguments\x22:\x20{\x22status\x22:\x20\x22passed\x22,\x20\x22reason\x22:\x20\x22\x22}}','executeScript','8359281FGOiUL','failed','browserstack_executor:\x20{\x22action\x22:\x20\x22setSessionStatus\x22,\x20\x22arguments\x22:\x20{\x22status\x22:\x20\x22failed\x22,\x20\x22reason\x22:\x20','bCQQm','__driver','PZJot','VywWK','oDmYi','LgdWO','cucumber/lib/index.js','545325HjhCEK','4626216MrCkPK'];a4_0x2831=function(){return _0x2c8bd7;};return a4_0x2831();}if(configuration!==undefined){let config=JSON[a4_0x2e6630(0x17a)](configuration);require(a4_0x2e6630(0x176))['browserstackAgentV2'](config);}global[a4_0x2e6630(0x184)]=0x0;function a4_0x943d(_0x55eb87,_0x4290ed){const _0x283165=a4_0x2831();return a4_0x943d=function(_0x943d02,_0x4e1537){_0x943d02=_0x943d02-0x158;let _0x3a7a81=_0x283165[_0x943d02];return _0x3a7a81;},a4_0x943d(_0x55eb87,_0x4290ed);}const __setDefaultTimeout=cucumberModule[a4_0x2e6630(0x16d)];cucumberModule[a4_0x2e6630(0x16d)]=_0x59638c=>{const _0x234eae=a4_0x2e6630,_0x5bd345={'sukFV':function(_0x4bfe0b,_0x2fe851){return _0x4bfe0b(_0x2fe851);}};global['__timeout']=_0x59638c,_0x5bd345[_0x234eae(0x17e)](__setDefaultTimeout,_0x59638c);};const a4_0x3be9a9={};a4_0x3be9a9[a4_0x2e6630(0x182)]=a4_0x2e6630(0x166),Before(a4_0x3be9a9,function(){const _0x93d069=a4_0x2e6630;global[_0x93d069(0x183)]=[];});const a4_0x10db93={};a4_0x10db93[a4_0x2e6630(0x182)]='bstack',a4_0x10db93[a4_0x2e6630(0x16f)]=0x2710,After(a4_0x10db93,function(_0xbc6a6a,_0x1fb024){const _0x57f7ab=a4_0x2e6630,_0xca92f0={'PSOOE':function(_0x4e6454,_0x3508f0){return _0x4e6454(_0x3508f0);},'ixEkY':'../../index','nmxbu':function(_0x3fbde3,_0x152b56){return _0x3fbde3(_0x152b56);},'owjUC':function(_0x526167){return _0x526167();},'aOMfk':function(_0x501ad4,_0x2f9481){return _0x501ad4===_0x2f9481;},'VywWK':_0x57f7ab(0x18a),'ysSpM':_0x57f7ab(0x170),'dQeyY':function(_0x39a654,_0x538c87){return _0x39a654==_0x538c87;},'WFwAK':_0x57f7ab(0x194),'mDjmN':function(_0x5862bc,_0x182e09){return _0x5862bc!==_0x182e09;},'vxDnN':_0x57f7ab(0x15a),'ARdWj':_0x57f7ab(0x179),'FhwlB':_0x57f7ab(0x17c),'xGjBk':_0x57f7ab(0x15b),'wfhkC':_0x57f7ab(0x169),'HNVFR':function(_0x4518c6,_0x11c4bf){return _0x4518c6!==_0x11c4bf;},'AgGHK':_0x57f7ab(0x168),'PZJot':'qMGUY','tVXsY':function(_0x5c3663,_0x253e55){return _0x5c3663!==_0x253e55;},'MptPj':_0x57f7ab(0x18b),'gfXhH':function(_0x41ec6f,_0x7b3a9){return _0x41ec6f(_0x7b3a9);},'UpMWk':function(_0x1e4c8b){return _0x1e4c8b();}};new Promise(async(_0x4fd2e4,_0x42c1d0)=>{const _0x534623=_0x57f7ab,_0xc954b9={'bCQQm':function(_0x18b382,_0x54b082){const _0x1f91e9=a4_0x943d;return _0xca92f0[_0x1f91e9(0x165)](_0x18b382,_0x54b082);},'ojAlr':function(_0x56fe95){return _0xca92f0['owjUC'](_0x56fe95);}};let _0x34c83a=![];try{_0xca92f0[_0x534623(0x16e)](_0xca92f0[_0x534623(0x159)],_0xca92f0['ysSpM'])?_0x4801e6[_0x534623(0x183)]=[]:(await global[_0x534623(0x197)][_0x534623(0x17f)],_0x34c83a=!![],await global[_0x534623(0x197)][_0x534623(0x192)](_0x534623(0x163)+_0xbc6a6a[_0x534623(0x173)][_0x534623(0x182)]+_0x534623(0x172)),_0xca92f0[_0x534623(0x185)](_0xbc6a6a['result']['status'][_0x534623(0x180)](),_0xca92f0[_0x534623(0x186)])?_0xca92f0['mDjmN'](_0xca92f0['vxDnN'],_0xca92f0[_0x534623(0x171)])?await global[_0x534623(0x197)][_0x534623(0x192)](_0x534623(0x195)+JSON[_0x534623(0x17b)](global[_0x534623(0x183)][_0x534623(0x17d)](_0xca92f0['FhwlB']))+'}}'):(_0x4abda8['__timeout']=_0x186c27,_0xc954b9[_0x534623(0x196)](_0xc6f76b,_0x559a13)):_0xca92f0[_0x534623(0x16e)](_0xca92f0[_0x534623(0x18c)],_0xca92f0[_0x534623(0x189)])?_0xc954b9['ojAlr'](_0x3ab06e):await global['__driver'][_0x534623(0x192)](_0x534623(0x191)));}catch(_0x28c6b6){}if(_0x34c83a)try{_0xca92f0['HNVFR'](_0xca92f0[_0x534623(0x18d)],_0xca92f0[_0x534623(0x158)])?(await global[_0x534623(0x197)][_0x534623(0x162)](),_0xca92f0[_0x534623(0x175)](_0x4fd2e4)):_0xc954b9[_0x534623(0x196)](_0x4886c2,_0x4f36dc);}catch(_0x1a6a37){if(_0xca92f0[_0x534623(0x16c)](_0xca92f0['MptPj'],_0xca92f0[_0x534623(0x190)])){let _0x2927a7=_0x464323[_0x534623(0x17a)](_0x53b69e);_0xca92f0[_0x534623(0x164)](_0x56151f,_0xca92f0[_0x534623(0x177)])[_0x534623(0x167)](_0x2927a7);}else _0xca92f0[_0x534623(0x181)](_0x42c1d0,_0x1a6a37);}else _0xca92f0[_0x534623(0x174)](_0x42c1d0);})[_0x57f7ab(0x178)](()=>_0x1fb024());});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
function a5_0x29e5(_0x26ddc3,_0x6fd062){const _0x464a23=a5_0x464a();return a5_0x29e5=function(_0x29e51d,_0x50a3af){_0x29e51d=_0x29e51d-0xf2;let _0x1f4016=_0x464a23[_0x29e51d];return _0x1f4016;},a5_0x29e5(_0x26ddc3,_0x6fd062);}const a5_0x57c50a=a5_0x29e5;function a5_0x464a(){const _0xd07666=['2PIanzX','cucumber/lib/index.js','29113FzUKTQ','4684410BMXxPI','setDefaultTimeout','../../helpers/helper','__timeout','261319cnNxqv','BSTACK_DELTA','174gQsTSx','14748cJwzLN','1967787YERclH','1864485GPXTXR','2523728mCdfMh','@cucumber/cucumber/lib/index.js','632EvATsZ'];a5_0x464a=function(){return _0xd07666;};return a5_0x464a();}(function(_0x29dc39,_0x4721b6){const _0x41ab89=a5_0x29e5,_0x4f6755=_0x29dc39();while(!![]){try{const _0x41d060=parseInt(_0x41ab89(0xfe))/0x1*(-parseInt(_0x41ab89(0xf7))/0x2)+parseInt(_0x41ab89(0x101))/0x3*(parseInt(_0x41ab89(0xf6))/0x4)+-parseInt(_0x41ab89(0xf3))/0x5+-parseInt(_0x41ab89(0x100))/0x6*(parseInt(_0x41ab89(0xf9))/0x7)+-parseInt(_0x41ab89(0xf4))/0x8+parseInt(_0x41ab89(0xf2))/0x9+parseInt(_0x41ab89(0xfa))/0xa;if(_0x41d060===_0x4721b6)break;else _0x4f6755['push'](_0x4f6755['shift']());}catch(_0x231ea8){_0x4f6755['push'](_0x4f6755['shift']());}}}(a5_0x464a,0x6012f));const {requireModule}=require(a5_0x57c50a(0xfc)),constants=require('../utils/constants');;let cucumberModule=null;try{cucumberModule=requireModule(a5_0x57c50a(0xf5));}catch(a5_0x4b4573){cucumberModule=requireModule(a5_0x57c50a(0xf8));}cucumberModule[a5_0x57c50a(0xfb)](constants[a5_0x57c50a(0xff)]+global[a5_0x57c50a(0xfd)]*0x1);
|