cypress-io / cypress

Fast, easy and reliable testing for anything that runs in a browser.
https://cypress.io
MIT License
46.97k stars 3.18k forks source link

Improve startup performance #2579

Closed lilaconlee closed 3 years ago

lilaconlee commented 6 years ago

It takes several seconds for Cypress to startup and open browser at beginning of tests.

Decrease this startup time. πŸ‘

sebinsua commented 4 years ago

See also: https://github.com/cypress-io/cypress/issues/3692

indrajitbnikam commented 4 years ago

Any Progress on this issue? I'm really stuck for a long time and I really want to use cypress.

jennifer-shehane commented 4 years ago

There has been no work done on this issue.

indrajitbnikam commented 4 years ago

@jennifer-shehane When can I expect this issue to be worked on? where can I see the progress?

mpulipati commented 4 years ago

Any update on this issue. It's taking 45 secs for Cypress to startup and open browser at beginning of tests.

jennifer-shehane commented 4 years ago

@mpulipati Typically opening Cypress will take a few seconds. 45 seconds or anything more than around 10 seconds to open is not typical and generally is due to some other Cypress plugin or file watching process taking up this length of time.

If you run Cypress in debug mode mode, this should give some idea of where the time is being spent before Cypress can start up.

You could also try removing plugins or preprocessors one at a time to see what is taking up this amount of time.

mpulipati commented 4 years ago

Hi @jennifer-shehane,

I have run cypress in debug mode. Please see the below logs Also, I am seeing the same time for launching even after removing all plugins and preprocessors

> cypress_automation@1.0.0 scripts C:\Users\mpulipat\.jenkins\workspace\Cypress
> set DEBUG=cypress:* && cypress run --browser chrome

2020-06-10T15:46:22.413Z cypress:cli:cli cli starts with arguments ["C:\\Program Files\\nodejs\\node.exe","C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\node_modules\\cypress\\bin\\cypress","run","--browser","chrome"]
2020-06-10T15:46:22.415Z cypress:cli NODE_OPTIONS is not set
2020-06-10T15:46:22.415Z cypress:cli:cli program parsing arguments
2020-06-10T15:46:22.423Z cypress:cli:cli running Cypress with args [ Command { commands: [], options: [ [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option] ], _execs: Set {}, _allowUnknownOption: false, _args: [], _name: 'run', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _helpFlags: '-h, --help', _helpDescription: 'output usage information', _helpShortFlag: '-h', _helpLongFlag: '--help', _noHelp: false, _exitCallback: undefined, _executableFile: undefined, parent: Command { commands: [Array], options: [Array], _execs: Set {}, _allowUnknownOption: false, _args: [], _name: 'cypress', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _helpFlags: '-h, --help', _helpDescription: 'output usage information', _helpShortFlag: '-h', _helpLongFlag: '--help', _usage: '<command> [options]', _events: [Object: null prototype], _eventsCount: 9, rawArgs: [Array], args: [] }, _usage: '[options]', _description: 'Runs Cypress tests from the CLI without the GUI', _argsDescription: undefined, _events: [Object: null prototype] { 'option:browser': [Function], 'option:ci-build-id': [Function], 'option:config': [Function], 'option:config-file': [Function], 'option:env': [Function], 'option:group': [Function], 'option:key': [Function], 'option:headed': [Function], 'option:headless': [Function], 'option:no-exit': [Function], 'option:parallel': [Function], 'option:port': [Function], 'option:project': [Function], 'option:record': [Function], 'option:reporter': [Function], 'option:reporter-options': [Function], 'option:spec': [Function], 'option:tag': [Function], 'option:dev': [Function] }, _eventsCount: 19, exit: true, browser: 'chrome' } ]
2020-06-10T15:46:22.987Z cypress:cli:cli variable-length opts parsed { args: [ 'C:\\Program Files\\nodejs\\node.exe', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\node_modules\\cypress\\bin\\cypress', 'run', '--browser', 'chrome' ], opts: Command { commands: [], options: [ [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option] ], _execs: Set {}, _allowUnknownOption: false, _args: [], _name: 'run', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _helpFlags: '-h, --help', _helpDescription: 'output usage information', _helpShortFlag: '-h', _helpLongFlag: '--help', _noHelp: false, _exitCallback: undefined, _executableFile: undefined, parent: Command { commands: [Array], options: [Array], _execs: Set {}, _allowUnknownOption: false, _args: [], _name: 'cypress', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _helpFlags: '-h, --help', _helpDescription: 'output usage information', _helpShortFlag: '-h', _helpLongFlag: '--help', _usage: '<command> [options]', _events: [Object: null prototype], _eventsCount: 9, rawArgs: [Array], args: [] }, _usage: '[options]', _description: 'Runs Cypress tests from the CLI without the GUI', _argsDescription: undefined, _events: [Object: null prototype] { 'option:browser': [Function], 'option:ci-build-id': [Function], 'option:config': [Function], 'option:config-file': [Function], 'option:env': [Function], 'option:group': [Function], 'option:key': [Function], 'option:headed': [Function], 'option:headless': [Function], 'option:no-exit': [Function], 'option:parallel': [Function], 'option:port': [Function], 'option:project': [Function], 'option:record': [Function], 'option:reporter': [Function], 'option:reporter-options': [Function], 'option:spec': [Function], 'option:tag': [Function], 'option:dev': [Function] }, _eventsCount: 19, exit: true, browser: 'chrome' } }
2020-06-10T15:46:22.989Z cypress:cli parsed cli options { browser: 'chrome' }
2020-06-10T15:46:22.990Z cypress:cli verifying Cypress app
2020-06-10T15:46:22.991Z cypress:cli checking environment variables
2020-06-10T15:46:22.994Z cypress:cli checking if executable exists C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\Cypress.exe
2020-06-10T15:46:23.000Z cypress:cli Binary is executable? : true
2020-06-10T15:46:23.001Z cypress:cli binaryDir is  C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress
2020-06-10T15:46:23.001Z cypress:cli Reading binary package.json from: C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\package.json
2020-06-10T15:46:23.006Z cypress:cli Found binary version 4.5.0 installed in: C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress
2020-06-10T15:46:23.008Z cypress:cli { verified: true }
2020-06-10T15:46:23.008Z cypress:cli is Verified ? true
2020-06-10T15:46:23.008Z cypress:cli:run processing run options { browser: 'chrome', key: null, spec: null, reporter: null, reporterOptions: null, project: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress' }
2020-06-10T15:46:23.008Z cypress:cli:run --key is not set, looking up environment variable CYPRESS_RECORD_KEY
2020-06-10T15:46:23.009Z cypress:cli:run run to spawn.start args ["--run-project","C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress","--browser","chrome"]
2020-06-10T15:46:23.009Z cypress:cli needs to start own Xvfb? false
2020-06-10T15:46:23.010Z cypress:cli spawning, should retry on display problem? false
2020-06-10T15:46:23.022Z cypress:cli spawning Cypress with executable: C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\Cypress.exe
2020-06-10T15:46:23.022Z cypress:cli spawn args [ '--', '--run-project', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', '--browser', 'chrome', '--cwd', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress' ] { detached: false, stdio: 'pipe', windowsHide: false }
2020-06-10T15:46:24.540Z cypress:cli piping process STDIN into child STDIN
2020-06-10T15:46:24.541Z cypress:cli piping child STDOUT to process STDOUT
2020-06-10T15:46:24.541Z cypress:cli piping child STDERR to process STDERR
2020-06-10T15:46:27.255Z cypress:ts Running without ts-node hook in environment "production"
2020-06-10T15:46:38.873Z cypress:server:appdata path: C:\Users\mpulipat\AppData\Roaming\Cypress\cy\production\browsers
2020-06-10T15:46:38.913Z cypress:server:util:node_options NODE_OPTIONS check passed, not forking { NODE_OPTIONS: '--max-http-header-size=1048576 --http-parser=legacy' }
2020-06-10T15:46:38.914Z cypress:server:util:node_options restoring NODE_OPTIONS { NODE_OPTIONS: '--max-http-header-size=1048576 --http-parser=legacy', ORIGINAL_NODE_OPTIONS: undefined }
2020-06-10T15:46:44.088Z cypress:server:cypress starting cypress with argv [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe', '--', '--run-project', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', '--browser', 'chrome', '--cwd', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress' ]
2020-06-10T15:46:44.089Z cypress:server:args argv array: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe', '--run-project', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', '--browser', 'chrome', '--cwd', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress' ]
2020-06-10T15:46:44.094Z cypress:server:args argv parsed: { _: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe' ], runProject: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', browser: 'chrome', cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', invokedFromCli: true }
2020-06-10T15:46:44.094Z cypress:server:util:proxy found proxy environment variables { npm_config_proxy: '', npm_config_https_proxy: '' }
2020-06-10T15:46:44.095Z cypress:server:util:proxy HTTP_PROXY is falsy, disabling HTTP_PROXY
2020-06-10T15:46:44.095Z cypress:server:util:proxy setting default NO_PROXY of ``
2020-06-10T15:46:44.095Z cypress:server:util:proxy <-loopback> not found, adding localhost to NO_PROXY
2020-06-10T15:46:44.095Z cypress:server:util:proxy normalized proxy environment variables { NO_PROXY: '127.0.0.1,::1,localhost' }
2020-06-10T15:46:44.096Z cypress:server:args options { _: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe' ], runProject: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', browser: 'chrome', cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', invokedFromCli: true, config: {} }
2020-06-10T15:46:44.096Z cypress:server:args argv options: { _: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe' ], runProject: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', browser: 'chrome', cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', invokedFromCli: true, config: {}, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', run: true }
2020-06-10T15:46:44.096Z cypress:server:cypress from argv [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe', '--run-project', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', '--browser', 'chrome', '--cwd', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress' ] got options { _: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe' ], runProject: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', browser: 'chrome', cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', invokedFromCli: true, config: {}, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', run: true }
2020-06-10T15:46:44.096Z cypress:server:cypress scaling electron app in headless mode
2020-06-10T15:46:44.338Z cypress:server:appdata path: C:\Users\mpulipat\AppData\Roaming\Cypress\cy\production
2020-06-10T15:46:44.353Z cypress:server:cypress starting in mode run with options { _: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe' ], runProject: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', browser: 'chrome', cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', invokedFromCli: true, config: {}, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', run: true }
2020-06-10T15:46:44.354Z cypress:server:cypress running Electron currently
2020-06-10T15:46:55.737Z cypress:server:appdata path: C:\Users\mpulipat\AppData\Roaming\Cypress\cy\production
2020-06-10T15:46:55.768Z cypress:server:appdata path: C:\Users\mpulipat\AppData\Roaming\Cypress\cy\production\cache
2020-06-10T15:47:22.564Z cypress:server:video using ffmpeg from C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\@ffmpeg-installer\win32-x64\ffmpeg.exe
2020-06-10T15:47:23.901Z cypress:server:chrome_policy_check error initializing chrome policy check { err: Error: Module did not self-register. at process.func (electron/js2c/asar.js:140:31) at process.func [as dlopen] (electron/js2c/asar.js:140:31) at Object.Module._extensions..node (internal/modules/cjs/loader.js:1016:18) at Object.func (electron/js2c/asar.js:140:31) at Object.func [as .node] (electron/js2c/asar.js:140:31) at Module.load (internal/modules/cjs/loader.js:816:32) at Module._load (internal/modules/cjs/loader.js:728:14) at Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\override_require.js:18:25) at Module.require (internal/modules/cjs/loader.js:853:19) at require (internal/modules/cjs/helpers.js:74:18) at Object.<anonymous> (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\registry-js\dist\lib\registry.js:4:7) at Module._compile (internal/modules/cjs/loader.js:968:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:986:10) at Module.load (internal/modules/cjs/loader.js:816:32) at Module._load (internal/modules/cjs/loader.js:728:14) at Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\override_require.js:18:25) at Module.require (internal/modules/cjs/loader.js:853:19) at require (internal/modules/cjs/helpers.js:74:18) at Object.<anonymous> (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\registry-js\dist\lib\index.js:6:10) at Module._compile (internal/modules/cjs/loader.js:968:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:986:10) at Module.load (internal/modules/cjs/loader.js:816:32) at Module._load (internal/modules/cjs/loader.js:728:14) at Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\override_require.js:18:25) at Module.require (internal/modules/cjs/loader.js:853:19) at require (internal/modules/cjs/helpers.js:74:18) at Object.<anonymous> (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\util\chrome_policy_check.js:102:24) at Module._compile (internal/modules/cjs/loader.js:968:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:986:10) at Module.load (internal/modules/cjs/loader.js:816:32) at Module._load (internal/modules/cjs/loader.js:728:14) at Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\override_require.js:18:25) at Module.require (internal/modules/cjs/loader.js:853:19) at require (internal/modules/cjs/helpers.js:74:18) at Object.<anonymous> (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\modes\run.js:31:27) at Module._compile (internal/modules/cjs/loader.js:968:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:986:10) at Module.load (internal/modules/cjs/loader.js:816:32) at Module._load (internal/modules/cjs/loader.js:728:14) at Module._load (electron/js2c/asar.js:717:26) at Function.Module._load (electron/js2c/asar.js:717:26) at Module.require (internal/modules/cjs/loader.js:853:19) at require (internal/modules/cjs/helpers.js:74:18) at module.exports (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\modes\index.js:6:14) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\cypress.js:73:34 at tryCatcher (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\util.js:16:23) at Function.Promise.attempt.Promise.try (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\method.js:39:29) at Object.runElectron (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\cypress.js:57:23) at Object.startInMode (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\cypress.js:254:21) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\cypress.js:175:19 at tryCatcher (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\util.js:16:23) at Promise._settlePromiseFromHandler (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:547:31) at Promise._settlePromise (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:604:18) at Promise._settlePromise0 (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:649:10) at Promise._settlePromises (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:729:18) at Promise._fulfill (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:673:18) at Promise._settlePromise (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:617:21) at Promise._settlePromise0 (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:649:10) at Promise._settlePromises (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:729:18) at Promise._fulfill (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:673:18) at PromiseArray._resolve (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise_array.js:127:19) at PromiseArray._promiseFulfilled (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise_array.js:145:14) at Promise._settlePromise (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:609:26) at Promise._settlePromise0 (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:649:10) at Promise._settlePromises (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:729:18) at Promise._fulfill (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\promise.js:673:18) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\bluebird\js\release\nodeback.js:42:21 at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\fs-extra\lib\mkdirs\mkdirs.js:56:16 at callback (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\fs-extra\node_modules\graceful-fs\polyfills.js:295:20) at callback (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\graceful-fs\polyfills.js:289:20) at FSReqCallback.oncomplete (fs.js:159:5) }
2020-06-10T15:47:24.097Z cypress:server:util:process_profiler current & mean memory and CPU usage by process group:
Ò”ŒÒ”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”�
Γ’β€β€š (index) Γ’β€β€š   group   Γ’β€β€š processCount Γ’β€β€š         pids         Γ’β€β€š cpuPercent Γ’β€β€š meanCpuPercent Γ’β€β€š memRssMb Γ’β€β€š meanMemRssMb Γ’β€β€š maxMemRssMb Γ’β€β€š
Ò”œÒ”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€
Γ’β€β€š    0    Γ’β€β€š 'cypress' Γ’β€β€š      1       Γ’β€β€š        '9788'        Γ’β€β€š    0.02    Γ’β€β€š      0.02      Γ’β€β€š  178.84  Γ’β€β€š    178.84    Γ’β€β€š   178.84    Γ’β€β€š
Γ’β€β€š    1    Γ’β€β€š  'other'  Γ’β€β€š      3       Γ’β€β€š '8952, 16492, 12272' Γ’β€β€š     0      Γ’β€β€š       0        Γ’β€β€š  25.71   Γ’β€β€š    25.71     Γ’β€β€š    25.71    Γ’β€β€š
Γ’β€β€š    2    Γ’β€β€š  'TOTAL'  Γ’β€β€š      4       Γ’β€β€š         '-'          Γ’β€β€š    0.02    Γ’β€β€š      0.02      Γ’β€β€š  204.54  Γ’β€β€š    204.54    Γ’β€β€š   204.54    Γ’β€β€š
Γ’β€β€Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Λœ
2020-06-10T15:47:24.423Z cypress:server:run run mode ready with options { _: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Cypress\\Cache\\4.5.0\\Cypress\\Cypress.exe' ], runProject: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', browser: 'chrome', cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', invokedFromCli: true, config: {}, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', run: true }
2020-06-10T15:47:24.424Z cypress:server:browsers getAllBrowsersWith { nameOrPath: undefined }
2020-06-10T15:47:24.424Z cypress:server:browsers:utils getBrowsers
2020-06-10T15:47:24.425Z cypress:launcher detecting if the following browsers are present [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', versionRegex: /Google Chrome (\S+)/m, binary: [ 'google-chrome', 'chrome', 'google-chrome-stable' ] }, { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', versionRegex: /Chromium (\S+)/m, binary: [ 'chromium-browser', 'chromium' ] }, { name: 'chrome', family: 'chromium', channel: 'canary', displayName: 'Canary', versionRegex: /Google Chrome Canary (\S+)/m, binary: 'google-chrome-canary' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', versionRegex: /^Mozilla Firefox ([^\sab]+)$/m, binary: 'firefox' }, { name: 'firefox', family: 'firefox', channel: 'dev', displayName: 'Firefox Developer Edition', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m, binary: [ 'firefox-developer-edition', 'firefox' ] }, { name: 'firefox', family: 'firefox', channel: 'nightly', displayName: 'Firefox Nightly', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', versionRegex: /^Mozilla Firefox (\S+a\S*)$/m, binary: [ 'firefox-nightly', 'firefox-trunk' ] }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', versionRegex: /Microsoft Edge (\S+)/m, binary: 'edge' }, { name: 'edge', family: 'chromium', channel: 'canary', displayName: 'Edge Canary', versionRegex: /Microsoft Edge Canary (\S+)/m, binary: 'edge-canary' }, { name: 'edge', family: 'chromium', channel: 'beta', displayName: 'Edge Beta', versionRegex: /Microsoft Edge Beta (\S+)/m, binary: 'edge-beta' }, { name: 'edge', family: 'chromium', channel: 'dev', displayName: 'Edge Dev', versionRegex: /Microsoft Edge Dev (\S+)/m, binary: 'edge-dev' } ]
2020-06-10T15:47:24.428Z cypress:launcher checking one browser chrome
2020-06-10T15:47:24.428Z cypress:launcher looking up chrome on win32 platform
2020-06-10T15:47:24.428Z cypress:launcher looking at possible paths... { browser: { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', versionRegex: /Google Chrome (\S+)/m, binary: [ 'google-chrome', 'chrome', 'google-chrome-stable' ] }, exePaths: [ 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe' ] }
2020-06-10T15:47:24.430Z cypress:launcher found C:\Program Files (x86)\Google\Chrome\Application\chrome.exe ? true
2020-06-10T15:47:24.742Z cypress:launcher Version=83.0.4103.97
2020-06-10T15:47:24.742Z cypress:launcher browser chrome at 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe' version 83.0.4103.97
2020-06-10T15:47:24.742Z cypress:launcher setting major version for {"name":"chrome","family":"chromium","channel":"stable","displayName":"Chrome","version":"83.0.4103.97","path":"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"}
2020-06-10T15:47:24.742Z cypress:launcher browser chrome version 83.0.4103.97 major version 83
2020-06-10T15:47:24.743Z cypress:launcher checking one browser chromium
2020-06-10T15:47:24.743Z cypress:launcher looking up chromium on win32 platform
2020-06-10T15:47:24.743Z cypress:launcher looking at possible paths... { browser: { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', versionRegex: /Chromium (\S+)/m, binary: [ 'chromium-browser', 'chromium' ] }, exePaths: [ 'C:\\Program Files (x86)\\Google\\chrome-win32\\chrome.exe' ] }
2020-06-10T15:47:24.744Z cypress:launcher found C:\Program Files (x86)\Google\chrome-win32\chrome.exe ? false
2020-06-10T15:47:24.745Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Google\\chrome-win32\\chrome.exe', exePaths: [], err: Error: Browser not installed: chromium at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:24.745Z cypress:launcher browser chromium not installed
2020-06-10T15:47:24.746Z cypress:launcher checking one browser chrome
2020-06-10T15:47:24.746Z cypress:launcher looking up chrome on win32 platform
2020-06-10T15:47:24.746Z cypress:launcher looking at possible paths... { browser: { name: 'chrome', family: 'chromium', channel: 'canary', displayName: 'Canary', versionRegex: /Google Chrome Canary (\S+)/m, binary: 'google-chrome-canary' }, exePaths: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Google\\Chrome SxS\\Application\\chrome.exe' ] }
2020-06-10T15:47:24.747Z cypress:launcher found C:\Users\mpulipat\AppData\Local\Google\Chrome SxS\Application\chrome.exe ? false
2020-06-10T15:47:24.747Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Users\\mpulipat\\AppData\\Local\\Google\\Chrome SxS\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:24.747Z cypress:launcher browser chrome not installed
2020-06-10T15:47:24.747Z cypress:launcher checking one browser firefox
2020-06-10T15:47:24.747Z cypress:launcher looking up firefox on win32 platform
2020-06-10T15:47:24.748Z cypress:launcher looking at possible paths... { browser: { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', versionRegex: /^Mozilla Firefox ([^\sab]+)$/m, binary: 'firefox' }, exePaths: [ 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', 'C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe' ] }
2020-06-10T15:47:24.748Z cypress:launcher found C:\Program Files\Mozilla Firefox\firefox.exe ? true
2020-06-10T15:47:25.000Z cypress:launcher Version=72.0.2.7321
2020-06-10T15:47:25.001Z cypress:launcher browser firefox at 'C:\Program Files\Mozilla Firefox\firefox.exe' version 72.0.2.7321
2020-06-10T15:47:25.001Z cypress:launcher setting major version for {"name":"firefox","family":"firefox","channel":"stable","displayName":"Firefox","version":"72.0.2.7321","path":"C:\\Program Files\\Mozilla Firefox\\firefox.exe","info":"Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue)."}
2020-06-10T15:47:25.001Z cypress:launcher browser firefox version 72.0.2.7321 major version 72
2020-06-10T15:47:25.001Z cypress:launcher checking one browser firefox
2020-06-10T15:47:25.001Z cypress:launcher looking up firefox on win32 platform
2020-06-10T15:47:25.002Z cypress:launcher looking at possible paths... { browser: { name: 'firefox', family: 'firefox', channel: 'dev', displayName: 'Firefox Developer Edition', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m, binary: [ 'firefox-developer-edition', 'firefox' ] }, exePaths: [ 'C:\\Program Files\\Firefox Developer Edition\\firefox.exe', 'C:\\Program Files (x86)\\Firefox Developer Edition\\firefox.exe' ] }
2020-06-10T15:47:25.002Z cypress:launcher found C:\Program Files\Firefox Developer Edition\firefox.exe ? false
2020-06-10T15:47:25.003Z cypress:launcher found C:\Program Files (x86)\Firefox Developer Edition\firefox.exe ? false
2020-06-10T15:47:25.003Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:25.004Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:146:28 { notInstalled: true } }
2020-06-10T15:47:25.004Z cypress:launcher browser firefox not installed
2020-06-10T15:47:25.005Z cypress:launcher checking one browser firefox
2020-06-10T15:47:25.005Z cypress:launcher looking up firefox on win32 platform
2020-06-10T15:47:25.005Z cypress:launcher looking at possible paths... { browser: { name: 'firefox', family: 'firefox', channel: 'nightly', displayName: 'Firefox Nightly', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', versionRegex: /^Mozilla Firefox (\S+a\S*)$/m, binary: [ 'firefox-nightly', 'firefox-trunk' ] }, exePaths: [ 'C:\\Program Files\\Firefox Nightly\\firefox.exe', 'C:\\Program Files (x86)\\Firefox Nightly\\firefox.exe' ] }
2020-06-10T15:47:25.005Z cypress:launcher found C:\Program Files\Firefox Nightly\firefox.exe ? false
2020-06-10T15:47:25.006Z cypress:launcher found C:\Program Files (x86)\Firefox Nightly\firefox.exe ? false
2020-06-10T15:47:25.006Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:25.007Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:146:28 { notInstalled: true } }
2020-06-10T15:47:25.007Z cypress:launcher browser firefox not installed
2020-06-10T15:47:25.007Z cypress:launcher checking one browser edge
2020-06-10T15:47:25.007Z cypress:launcher looking up edge on win32 platform
2020-06-10T15:47:25.008Z cypress:launcher looking at possible paths... { browser: { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', versionRegex: /Microsoft Edge (\S+)/m, binary: 'edge' }, exePaths: [ 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe' ] }
2020-06-10T15:47:25.008Z cypress:launcher found C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe ? false
2020-06-10T15:47:25.009Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:25.009Z cypress:launcher browser edge not installed
2020-06-10T15:47:25.009Z cypress:launcher checking one browser edge
2020-06-10T15:47:25.009Z cypress:launcher looking up edge on win32 platform
2020-06-10T15:47:25.010Z cypress:launcher looking at possible paths... { browser: { name: 'edge', family: 'chromium', channel: 'canary', displayName: 'Edge Canary', versionRegex: /Microsoft Edge Canary (\S+)/m, binary: 'edge-canary' }, exePaths: [ 'C:\\Users\\mpulipat\\AppData\\Local\\Microsoft\\Edge SxS\\Application\\msedge.exe' ] }
2020-06-10T15:47:25.010Z cypress:launcher found C:\Users\mpulipat\AppData\Local\Microsoft\Edge SxS\Application\msedge.exe ? false
2020-06-10T15:47:25.011Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Users\\mpulipat\\AppData\\Local\\Microsoft\\Edge SxS\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:25.011Z cypress:launcher browser edge not installed
2020-06-10T15:47:25.011Z cypress:launcher checking one browser edge
2020-06-10T15:47:25.011Z cypress:launcher looking up edge on win32 platform
2020-06-10T15:47:25.012Z cypress:launcher looking at possible paths... { browser: { name: 'edge', family: 'chromium', channel: 'beta', displayName: 'Edge Beta', versionRegex: /Microsoft Edge Beta (\S+)/m, binary: 'edge-beta' }, exePaths: [ 'C:\\Program Files (x86)\\Microsoft\\Edge Beta\\Application\\msedge.exe' ] }
2020-06-10T15:47:25.012Z cypress:launcher found C:\Program Files (x86)\Microsoft\Edge Beta\Application\msedge.exe ? false
2020-06-10T15:47:25.013Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge Beta\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:25.013Z cypress:launcher browser edge not installed
2020-06-10T15:47:25.013Z cypress:launcher checking one browser edge
2020-06-10T15:47:25.013Z cypress:launcher looking up edge on win32 platform
2020-06-10T15:47:25.013Z cypress:launcher looking at possible paths... { browser: { name: 'edge', family: 'chromium', channel: 'dev', displayName: 'Edge Dev', versionRegex: /Microsoft Edge Dev (\S+)/m, binary: 'edge-dev' }, exePaths: [ 'C:\\Program Files (x86)\\Microsoft\\Edge Dev\\Application\\msedge.exe' ] }
2020-06-10T15:47:25.014Z cypress:launcher found C:\Program Files (x86)\Microsoft\Edge Dev\Application\msedge.exe ? false
2020-06-10T15:47:25.014Z cypress:launcher error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge Dev\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at Object.exports.notInstalledErr (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\errors.js:4:15) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:124:32 at step (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:32:23) at Object.next (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:13:53) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:7:71 at new Promise (<anonymous>:null:null) at __awaiter (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:3:12) at tryNextExePath (C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:118:47) at C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\launcher\lib\windows\index.js:130:32 { notInstalled: true } }
2020-06-10T15:47:25.015Z cypress:launcher browser edge not installed
2020-06-10T15:47:25.017Z cypress:server:browsers:utils found browsers { browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 } ] }
2020-06-10T15:47:25.017Z cypress:server:browsers:utils adding Electron browser { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' }
2020-06-10T15:47:25.018Z cypress:server:run found all system browsers [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ]
2020-06-10T15:47:25.022Z cypress:server:open_project open_project create C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:25.023Z cypress:server:open_project and options { socketId: 'wzezd', morgan: false, report: true, isTextTerminal: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], onWarning: [Function: onWarning], onError: [Function] }
2020-06-10T15:47:25.023Z cypress:server:project Project created C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:25.024Z cypress:server:open_project opening project C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:25.024Z cypress:server:open_project and options { socketId: 'wzezd', morgan: false, report: true, isTextTerminal: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], onWarning: [Function: onWarning], onError: [Function], onReloadBrowser: [Function: onReloadBrowser] }
2020-06-10T15:47:25.024Z cypress:server:project opening project instance C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:25.025Z cypress:server:project project open options { socketId: 'wzezd', morgan: false, report: true, isTextTerminal: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], onWarning: [Function: onWarning], onError: [Function], onReloadBrowser: [Function: onReloadBrowser] }
2020-06-10T15:47:25.025Z cypress:server:project project options { socketId: 'wzezd', morgan: false, report: true, isTextTerminal: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], onWarning: [Function: onWarning], onError: [Function], onReloadBrowser: [Function: onReloadBrowser], onFocusTests: [Function: onFocusTests], onSettingsChanged: false }
2020-06-10T15:47:25.052Z cypress:server:config setting config object
2020-06-10T15:47:25.052Z cypress:server:config config is { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } } }
2020-06-10T15:47:25.053Z cypress:server:config merged config with options, got { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, envFile: {}, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ] }
2020-06-10T15:47:25.066Z cypress:server:config using CYPRESS_INTERNAL_ENV production
2020-06-10T15:47:25.067Z cypress:server:config resolved config is { value: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], from: 'default' }
2020-06-10T15:47:25.072Z cypress:server:validation browsers [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ]
2020-06-10T15:47:25.073Z cypress:server:config setting support file C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\support
2020-06-10T15:47:25.073Z cypress:server:config for project root C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:25.075Z cypress:server:config set support folder C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\support
2020-06-10T15:47:25.076Z cypress:server:config setting plugins file C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins
2020-06-10T15:47:25.076Z cypress:server:config for project root C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:25.078Z cypress:server:config set pluginsFile to C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins\index.js
2020-06-10T15:47:25.078Z cypress:server:config set scaffold paths
2020-06-10T15:47:25.080Z cypress:server:scaffold scaffolded files ["cypress\\integration\\examples\\actions.spec.js","cypress\\integration\\examples\\aliasing.spec.js","cypress\\integration\\examples\\assertions.spec.js","cypress\\integration\\examples\\connectors.spec.js","cypress\\integration\\examples\\cookies.spec.js","cypress\\integration\\examples\\cypress_api.spec.js","cypress\\integration\\examples\\files.spec.js","cypress\\integration\\examples\\local_storage.spec.js","cypress\\integration\\examples\\location.spec.js","cypress\\integration\\examples\\misc.spec.js","cypress\\integration\\examples\\navigation.spec.js","cypress\\integration\\examples\\network_requests.spec.js","cypress\\integration\\examples\\querying.spec.js","cypress\\integration\\examples\\spies_stubs_clocks.spec.js","cypress\\integration\\examples\\traversal.spec.js","cypress\\integration\\examples\\utilities.spec.js","cypress\\integration\\examples\\viewport.spec.js","cypress\\integration\\examples\\waiting.spec.js","cypress\\integration\\examples\\window.spec.js","cypress\\fixtures\\example.json","cypress\\support\\commands.js","cypress\\support\\index.js","cypress\\plugins\\index.js"]
2020-06-10T15:47:25.081Z cypress:server:config got file tree
2020-06-10T15:47:25.081Z cypress:server:project get saved state
2020-06-10T15:47:25.082Z cypress:server:saved_state noop saved state
2020-06-10T15:47:25.082Z cypress:server:project scaffolding with plugins file C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins\index.js
2020-06-10T15:47:25.082Z cypress:server:scaffold plugins folder C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins
2020-06-10T15:47:25.082Z cypress:server:scaffold verify scaffolding in C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins
2020-06-10T15:47:25.083Z cypress:server:scaffold folder C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins already exists
2020-06-10T15:47:25.088Z cypress:server:project typescript doesn't exist. ts-node setup passed.
2020-06-10T15:47:25.089Z cypress:server:plugins plugins.init C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins\index.js
2020-06-10T15:47:25.089Z cypress:server:plugins forking to run C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\lib\plugins\child\index.js
2020-06-10T15:47:25.888Z cypress:server:plugins:child pluginsFile: C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins\index.js
2020-06-10T15:47:25.896Z cypress:server:plugins:child typescript path: C:\Users\mpulipat\AppData\Local\Cypress\Cache\4.5.0\Cypress\resources\app\packages\server\node_modules\typescript\lib\typescript.js
2020-06-10T15:47:26.206Z cypress:server:plugins:child require pluginsFile
2020-06-10T15:47:35.374Z cypress:server:util:process_profiler current & mean memory and CPU usage by process group:
Ò”ŒÒ”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¬Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”�
Γ’β€β€š (index) Γ’β€β€š   group   Γ’β€β€š processCount Γ’β€β€š              pids              Γ’β€β€š cpuPercent Γ’β€β€š meanCpuPercent Γ’β€β€š memRssMb Γ’β€β€š meanMemRssMb Γ’β€β€š maxMemRssMb Γ’β€β€š
Ò”œÒ”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”¼Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€Ò”€
Γ’β€β€š    0    Γ’β€β€š 'cypress' Γ’β€β€š      1       Γ’β€β€š             '9788'             Γ’β€β€š    4.86    Γ’β€β€š      2.44      Γ’β€β€š  206.71  Γ’β€β€š    192.78    Γ’β€β€š   206.71    Γ’β€β€š
Γ’β€β€š    1    Γ’β€β€š  'other'  Γ’β€β€š      5       Γ’β€β€š '4232, 9592, 3228, 5324, 8572' Γ’β€β€š     0      Γ’β€β€š       0        Γ’β€β€š  81.17   Γ’β€β€š    53.44     Γ’β€β€š    81.17    Γ’β€β€š
Γ’β€β€š    2    Γ’β€β€š 'plugin'  Γ’β€β€š      1       Γ’β€β€š             '9872'             Γ’β€β€š    0.01    Γ’β€β€š      0.01      Γ’β€β€š  73.26   Γ’β€β€š    73.26     Γ’β€β€š    73.26    Γ’β€β€š
Γ’β€β€š    3    Γ’β€β€š  'TOTAL'  Γ’β€β€š      7       Γ’β€β€š              '-'               Γ’β€β€š    4.88    Γ’β€β€š      2.45      Γ’β€β€š  361.14  Γ’β€β€š    282.84    Γ’β€β€š   361.14    Γ’β€β€š
Γ’β€β€Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Β΄Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€β‚¬Γ’β€Λœ
2020-06-10T15:47:39.371Z cypress:server:plugins:child plugins load file "C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins\index.js"
2020-06-10T15:47:39.376Z cypress:server:plugins:child passing config { animationDistanceThreshold: 5, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', baseUrl: null, fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', blacklistHosts: null, chromeWebSecurity: true, modifyObstructiveCode: true, integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', env: {}, pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', hosts: null, screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', numTestsKeptInMemory: 0, supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', port: null, supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', projectId: null, videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, ignoreTestFiles: '*.hot-update.js', testFiles: '**/*.feature', defaultCommandTimeout: 4000, trashAssetsBeforeRuns: true, execTimeout: 60000, userAgent: null, pageLoadTimeout: 60000, viewportWidth: 1000, requestTimeout: 5000, viewportHeight: 660, responseTimeout: 30000, video: false, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, watchForFileChanges: false, waitForAnimations: true, resolvedNodeVersion: '12.13.0', nodeVersion: 'default', firefoxGcInterval: { runMode: 1, openMode: null }, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], experimentalGetCookiesSameSite: false, experimentalComponentTesting: false, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', configFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress.json' }
2020-06-10T15:47:39.377Z cypress:server:plugins:child run plugins function
2020-06-10T15:47:39.378Z cypress:server:plugins:child register event _get:task:body with id 0
2020-06-10T15:47:39.378Z cypress:server:plugins:child register event _get:task:keys with id 1
2020-06-10T15:47:39.379Z cypress:server:plugins:child run plugins function
2020-06-10T15:47:39.379Z cypress:server:plugins:child register event file:preprocessor with id 2
2020-06-10T15:47:39.386Z cypress:server:plugins:child plugins file successfully loaded
2020-06-10T15:47:39.388Z cypress:server:plugins register plugins process event _get:task:body with id 0
2020-06-10T15:47:39.388Z cypress:server:plugins register event '_get:task:body'
2020-06-10T15:47:39.388Z cypress:server:plugins register plugins process event _get:task:keys with id 1
2020-06-10T15:47:39.388Z cypress:server:plugins register event '_get:task:keys'
2020-06-10T15:47:39.388Z cypress:server:plugins register plugins process event file:preprocessor with id 2
2020-06-10T15:47:39.388Z cypress:server:plugins register event 'file:preprocessor'
2020-06-10T15:47:39.388Z cypress:server:plugins resolving with new config null
2020-06-10T15:47:39.389Z cypress:server:project plugin config yielded: null
2020-06-10T15:47:39.391Z cypress:server:config starting config { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: null, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, baseUrl: { value: null, from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, blacklistHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, integrationFolder: { value: 'cypress/integration', from: 'default' }, env: {}, pluginsFile: { value: 'cypress/plugins', from: 'default' }, hosts: { value: null, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, supportFile: { value: 'cypress/support', from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, reporter: { value: 'cypress-multi-reporters', from: 'config' }, reporterOptions: { value: [Object], from: 'config' }, ignoreTestFiles: { value: '*.hot-update.js', from: 'default' }, testFiles: { value: '**/*.feature', from: 'config' }, defaultCommandTimeout: { value: 4000, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, execTimeout: { value: 60000, from: 'default' }, userAgent: { value: null, from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, viewportHeight: { value: 660, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, video: { value: false, from: 'config' }, taskTimeout: { value: 60000, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, waitForAnimations: { value: true, from: 'default' }, nodeVersion: { value: 'default', from: 'default' }, firefoxGcInterval: { value: [Object], from: 'default' }, componentFolder: { value: 'cypress/component', from: 'default' }, browsers: { value: [Array], from: 'default' }, experimentalGetCookiesSameSite: { value: false, from: 'default' }, experimentalComponentTesting: { value: false, from: 'default' } }, parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {} }
2020-06-10T15:47:39.391Z cypress:server:config overrides {}
2020-06-10T15:47:39.392Z cypress:server:config config diffs null
2020-06-10T15:47:39.397Z cypress:server:config merged config object { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: null, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, baseUrl: { value: null, from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, blacklistHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, integrationFolder: { value: 'cypress/integration', from: 'default' }, env: {}, pluginsFile: { value: 'cypress/plugins', from: 'default' }, hosts: { value: null, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, supportFile: { value: 'cypress/support', from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, reporter: { value: 'cypress-multi-reporters', from: 'config' }, reporterOptions: { value: [Object], from: 'config' }, ignoreTestFiles: { value: '*.hot-update.js', from: 'default' }, testFiles: { value: '**/*.feature', from: 'config' }, defaultCommandTimeout: { value: 4000, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, execTimeout: { value: 60000, from: 'default' }, userAgent: { value: null, from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, viewportHeight: { value: 660, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, video: { value: false, from: 'config' }, taskTimeout: { value: 60000, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, waitForAnimations: { value: true, from: 'default' }, nodeVersion: { value: 'default', from: 'default' }, firefoxGcInterval: { value: [Object], from: 'default' }, componentFolder: { value: 'cypress/component', from: 'default' }, browsers: { value: [Array], from: 'default' }, experimentalGetCookiesSameSite: { value: false, from: 'default' }, experimentalComponentTesting: { value: false, from: 'default' } }, parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {} }
2020-06-10T15:47:39.399Z cypress:server:config merged plugins config { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: null, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, baseUrl: { value: null, from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, blacklistHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, integrationFolder: { value: 'cypress/integration', from: 'default' }, env: {}, pluginsFile: { value: 'cypress/plugins', from: 'default' }, hosts: { value: null, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, supportFile: { value: 'cypress/support', from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, reporter: { value: 'cypress-multi-reporters', from: 'config' }, reporterOptions: { value: [Object], from: 'config' }, ignoreTestFiles: { value: '*.hot-update.js', from: 'default' }, testFiles: { value: '**/*.feature', from: 'config' }, defaultCommandTimeout: { value: 4000, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, execTimeout: { value: 60000, from: 'default' }, userAgent: { value: null, from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, viewportHeight: { value: 660, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, video: { value: false, from: 'config' }, taskTimeout: { value: 60000, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, waitForAnimations: { value: true, from: 'default' }, nodeVersion: { value: 'default', from: 'default' }, firefoxGcInterval: { value: [Object], from: 'default' }, componentFolder: { value: 'cypress/component', from: 'default' }, browsers: { value: [Array], from: 'default' }, experimentalGetCookiesSameSite: { value: false, from: 'default' }, experimentalComponentTesting: { value: false, from: 'default' } }, parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {} }
2020-06-10T15:47:39.401Z cypress:server:project updated config: { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: null, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, baseUrl: { value: null, from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, blacklistHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, integrationFolder: { value: 'cypress/integration', from: 'default' }, env: {}, pluginsFile: { value: 'cypress/plugins', from: 'default' }, hosts: { value: null, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, supportFile: { value: 'cypress/support', from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, reporter: { value: 'cypress-multi-reporters', from: 'config' }, reporterOptions: { value: [Object], from: 'config' }, ignoreTestFiles: { value: '*.hot-update.js', from: 'default' }, testFiles: { value: '**/*.feature', from: 'config' }, defaultCommandTimeout: { value: 4000, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, execTimeout: { value: 60000, from: 'default' }, userAgent: { value: null, from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, viewportHeight: { value: 660, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, video: { value: false, from: 'config' }, taskTimeout: { value: 60000, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, waitForAnimations: { value: true, from: 'default' }, nodeVersion: { value: 'default', from: 'default' }, firefoxGcInterval: { value: [Object], from: 'default' }, componentFolder: { value: 'cypress/component', from: 'default' }, browsers: { value: [Array], from: 'default' }, experimentalGetCookiesSameSite: { value: false, from: 'default' }, experimentalComponentTesting: { value: false, from: 'default' } }, parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {} }
2020-06-10T15:47:39.402Z cypress:server:server server open
2020-06-10T15:47:39.847Z cypress:server:server Server listening on  { address: '127.0.0.1', family: 'IPv4', port: 58832 }
2020-06-10T15:47:39.848Z cypress:server:appdata path: C:\Users\mpulipat\AppData\Roaming\Cypress\cy\production\proxy
2020-06-10T15:47:39.856Z cypress:https-proxy:ca checking CA version { actualVersion: 1, CA_VERSION: 1 }
2020-06-10T15:47:39.918Z cypress:https-proxy Created SNI HTTPS Proxy Server { port: 58834 }
2020-06-10T15:47:39.919Z cypress:server:server Setting remoteAuth undefined
2020-06-10T15:47:39.920Z cypress:server:server Setting remoteOrigin http://localhost:58832
2020-06-10T15:47:39.920Z cypress:server:server Setting remoteStrategy file
2020-06-10T15:47:39.920Z cypress:server:server Setting remoteHostAndPort null
2020-06-10T15:47:39.920Z cypress:server:server Setting remoteDocDomain localhost
2020-06-10T15:47:39.920Z cypress:server:server Setting remoteFileServer http://localhost:58833
2020-06-10T15:47:39.920Z cypress:server:server Getting remote state: { auth: undefined, props: null, origin: 'http://localhost:58832', strategy: 'file', visiting: undefined, domainName: 'localhost', fileServer: 'http://localhost:58833' }
2020-06-10T15:47:39.923Z cypress:server:project project config: { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: 58832, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {}, proxyUrl: 'http://localhost:58832', browserUrl: 'http://localhost:58832/__/', reporterUrl: 'http://localhost:58832/__cypress/reporter', xhrUrl: '__cypress/xhrs/' }
2020-06-10T15:47:39.924Z cypress:server:reporter trying to load reporter: cypress-multi-reporters
2020-06-10T15:47:39.924Z cypress:server:reporter trying to require local reporter with path: C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress-multi-reporters
2020-06-10T15:47:39.925Z cypress:server:reporter trying to require local reporter with path: C:\Users\mpulipat\.jenkins\workspace\Cypress\node_modules\cypress-multi-reporters
2020-06-10T15:47:45.511Z cypress:server:project scaffolding project C:\Users\mpulipat\.jenkins\workspace\Cypress
2020-06-10T15:47:45.511Z cypress:server:scaffold support folder C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\support, support file C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\support\index.js
2020-06-10T15:47:45.511Z cypress:server:scaffold verify scaffolding in C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\support
2020-06-10T15:47:45.826Z cypress:server:scaffold folder C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\support already exists
2020-06-10T15:47:45.827Z cypress:server:project attempt watch plugins file: C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\plugins\index.js
2020-06-10T15:47:45.833Z cypress:server:project project has config { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: 58832, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, baseUrl: { value: null, from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, blacklistHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, integrationFolder: { value: 'cypress/integration', from: 'default' }, env: {}, pluginsFile: { value: 'cypress/plugins', from: 'default' }, hosts: { value: null, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, supportFile: { value: 'cypress/support', from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, reporter: { value: 'cypress-multi-reporters', from: 'config' }, reporterOptions: { value: [Object], from: 'config' }, ignoreTestFiles: { value: '*.hot-update.js', from: 'default' }, testFiles: { value: '**/*.feature', from: 'config' }, defaultCommandTimeout: { value: 4000, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, execTimeout: { value: 60000, from: 'default' }, userAgent: { value: null, from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, viewportHeight: { value: 660, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, video: { value: false, from: 'config' }, taskTimeout: { value: 60000, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, waitForAnimations: { value: true, from: 'default' }, nodeVersion: { value: 'default', from: 'default' }, firefoxGcInterval: { value: [Object], from: 'default' }, componentFolder: { value: 'cypress/component', from: 'default' }, browsers: { value: [Array], from: 'default' }, experimentalGetCookiesSameSite: { value: false, from: 'default' }, experimentalComponentTesting: { value: false, from: 'default' } }, parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {}, proxyUrl: 'http://localhost:58832', browserUrl: 'http://localhost:58832/__/', reporterUrl: 'http://localhost:58832/__cypress/reporter', xhrUrl: '__cypress/xhrs/' }
2020-06-10T15:47:45.848Z cypress:server:run project created and opened with config { testFiles: '**/*.feature', video: false, reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true } }, projectRoot: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', projectName: 'Cypress', morgan: false, isTextTerminal: true, socketId: 'wzezd', report: true, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ], port: 58832, hosts: null, baseUrl: null, projectId: null, userAgent: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, videoCompression: 32, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress', videosFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\videos', supportFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', fixturesFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures', integrationFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', screenshotsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\screenshots', namespace: '__cypress', pluginsFile: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\plugins\\index.js', nodeVersion: 'default', configFile: 'cypress.json', firefoxGcInterval: { runMode: 1, openMode: null }, javascripts: [], experimentalComponentTesting: false, componentFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\component', experimentalGetCookiesSameSite: false, env: {}, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, baseUrl: { value: null, from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, blacklistHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, integrationFolder: { value: 'cypress/integration', from: 'default' }, env: {}, pluginsFile: { value: 'cypress/plugins', from: 'default' }, hosts: { value: null, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, supportFile: { value: 'cypress/support', from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, reporter: { value: 'cypress-multi-reporters', from: 'config' }, reporterOptions: { value: [Object], from: 'config' }, ignoreTestFiles: { value: '*.hot-update.js', from: 'default' }, testFiles: { value: '**/*.feature', from: 'config' }, defaultCommandTimeout: { value: 4000, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, execTimeout: { value: 60000, from: 'default' }, userAgent: { value: null, from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, viewportHeight: { value: 660, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, video: { value: false, from: 'config' }, taskTimeout: { value: 60000, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, waitForAnimations: { value: true, from: 'default' }, nodeVersion: { value: 'default', from: 'default' }, firefoxGcInterval: { value: [Object], from: 'default' }, componentFolder: { value: 'cypress/component', from: 'default' }, browsers: { value: [Array], from: 'default' }, experimentalGetCookiesSameSite: { value: false, from: 'default' }, experimentalComponentTesting: { value: false, from: 'default' } }, parentTestsFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress', parentTestsFolderDisplay: 'Cypress\\cypress', supportFolder: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support', integrationExampleName: 'examples', integrationExamplePath: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration\\examples', scaffoldedFiles: [ { name: 'cypress\\integration\\examples\\actions.spec.js' }, { name: 'cypress\\integration\\examples\\aliasing.spec.js' }, { name: 'cypress\\integration\\examples\\assertions.spec.js' }, { name: 'cypress\\integration\\examples\\connectors.spec.js' }, { name: 'cypress\\integration\\examples\\cookies.spec.js' }, { name: 'cypress\\integration\\examples\\cypress_api.spec.js' }, { name: 'cypress\\integration\\examples\\files.spec.js' }, { name: 'cypress\\integration\\examples\\local_storage.spec.js' }, { name: 'cypress\\integration\\examples\\location.spec.js' }, { name: 'cypress\\integration\\examples\\misc.spec.js' }, { name: 'cypress\\integration\\examples\\navigation.spec.js' }, { name: 'cypress\\integration\\examples\\network_requests.spec.js' }, { name: 'cypress\\integration\\examples\\querying.spec.js' }, { name: 'cypress\\integration\\examples\\spies_stubs_clocks.spec.js' }, { name: 'cypress\\integration\\examples\\traversal.spec.js' }, { name: 'cypress\\integration\\examples\\utilities.spec.js' }, { name: 'cypress\\integration\\examples\\viewport.spec.js' }, { name: 'cypress\\integration\\examples\\waiting.spec.js' }, { name: 'cypress\\integration\\examples\\window.spec.js' }, { name: 'cypress\\fixtures\\example.json' }, { name: 'cypress\\support\\commands.js' }, { name: 'cypress\\support\\index.js' }, { name: 'cypress\\plugins\\index.js' } ], resolvedNodeVersion: '12.13.0', state: {}, proxyUrl: 'http://localhost:58832', browserUrl: 'http://localhost:58832/__/', reporterUrl: 'http://localhost:58832/__cypress/reporter', xhrUrl: '__cypress/xhrs/' }
2020-06-10T15:47:45.850Z cypress:server:specs experimentalComponentTesting false
2020-06-10T15:47:45.851Z cypress:server:specs looking for test specs in the folder: C:\Users\mpulipat\.jenkins\workspace\Cypress\cypress\integration
2020-06-10T15:47:45.851Z cypress:server:specs there is no spec pattern
2020-06-10T15:47:45.851Z cypress:server:specs globbing test files "**/*.feature"
2020-06-10T15:47:45.852Z cypress:server:specs glob options { sort: true, absolute: true, nodir: true, cwd: 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\integration', ignore: [ 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\support\\index.js', 'C:\\Users\\mpulipat\\.jenkins\\workspace\\Cypress\\cypress\\fixtures\\**\\*' ] }
2020-06-10T15:47:45.855Z cypress:server:browsers searching for browser { nameOrPath: 'chrome', filter: { name: 'chrome', channel: 'stable' }, knownBrowsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '83.0.4103.97', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', majorVersion: 83 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '72.0.2.7321', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', info: 'Firefox support is currently in beta! You can help us continue to improve the Cypress + Firefox experience by [reporting any issues you find](https://on.cypress.io/new-issue).', majorVersion: 72 }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '80.0.3987.163', path: '', majorVersion: 80, info: 'Electron is the default browser that comes with Cypress. This is the default browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.' } ] }
2020-06-10T15:47:45.874Z cypress:server:profilecleaner found 0 profile folders: []
2020-06-10T15:47:45.877Z cypress:server:profilecleaner found 0 root level profile matches: []
2020-06-10T15:47:45.877Z cypress:server:profilecleaner found 3 profile folders: [ 'C:/Users/mpulipat/AppData/Roaming/Cypress/cy/production/browsers/firefox-stable/run-13104', 'C:/Users/mpulipat/AppData/Roaming/Cypress/cy/production/browsers/firefox-stable/run-16968', 'C:/Users/mpulipat/AppData/Roaming/Cypress/cy/production/browsers/firefox-stable/run-19404' ]
2020-06-10T15:47:45.878Z cypress:server:profilecleaner finding process by pid: 13104
2020-06-10T15:47:45.910Z cypress:server:profilecleaner finding process by pid: 16968
2020-06-10T15:47:45.955Z cypress:server:profilecleaner finding process by pid: 19404
2020-06-10T15:47:46.039Z cypress:server:specs [
  'C:/Users/mpulipat/.jenkins/workspace/Cypress/cypress/integration/OPP/Demo.feature'

Thanks, Manoj

jennifer-shehane commented 3 years ago

Since this issue hasn't had activity in a while, we'll close this issue until we can confirm this is still an issue. Please comment if there is new information to provide concerning the original issue and we'd be happy to reopen.