Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'Cannot read property \'replace\' of null' from sanitize-filename err being thrown #4310

Closed
amirdhaoui opened this issue May 24, 2019 · 9 comments · Fixed by #4317
Closed
Labels
pkg/server This is due to an issue in the packages/server directory topic: screenshots 📸 type: bug

Comments

@amirdhaoui
Copy link

amirdhaoui commented May 24, 2019

We are using Docker containers to run multiple test cases in parallel. Each container run a single test. we are launching multiple test cases together to test the same application located in another server. When I launch a single test it passes. Problems start when I run the same test 4 or 5 tests in parallel. Some of them pass the others fail.

The test is simple it enters the login and password in the login webpage and clicks "connect" and wait for the home page.

I read the access log of the server and I found that the number of requests is not the same for each client ! I found that weird because I waited for the same behaviour from the web server.

I extracted the cypress Debug logs and I found that the failed clients have this error:

cypress:server:reporter got mocha event 'fail' with args: [ 
  { 
    id: 'r3', 
    err: { 
      message: 'Cannot read property \'replace\' of null', 
      name: 'TypeError', 
      stack: 'TypeError: Cannot read property \'replace\' of null\n    
        at sanitize (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:41:6)\n    
        at module.exports (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:51:16)\n

I tried to run those tests not in containers they passed.

I couldn't understand the source of the problem, eather the cypress test or the application itself.

Any help will be appreciated.

@jennifer-shehane
Copy link
Member

jennifer-shehane commented May 28, 2019

@amirdhaoui There are a couple of places where sanitize-filename are called from within Cypress. This seems to me to a bug on our part. You likely passed in something we were not expecting.

Could you paste some more of the DEBUG log?

Do you have any other configuration set up? Anything in your cypress.json or flags you pass when running Cypress? Any plugins changing the screenshot process or the project's root directory?

Also, what it the directory of your project? Does it or any of your test names have any strange characters in it? Maybe foreign chars or special chars?

@jennifer-shehane jennifer-shehane added the stage: needs information Not enough info to reproduce the issue label May 28, 2019
@jennifer-shehane jennifer-shehane changed the title Run multiple tests on Docker containers failed 'Cannot read property \'replace\' of null' from sanitize-filename err being thrown May 28, 2019
@jennifer-shehane
Copy link
Member

I was able to recreate this by defining a null test title where the test fails.

I doubt this is the exact use case someone would have, likely they may be doing a for/each loop through an array or obj to auto generate test titles that ends up defining the title as null or undefined.

it(null, () => {
  expect(true).to.be.false
})
it(undefined, () => {
  expect(true).to.be.false
})

This is due to our calling sanitize on the test titles while generating the screenshot (taken during failure automatically)

This error also only occurs during cypress run. I'm working on a PR to fix this.

@cypress-bot cypress-bot bot added stage: work in progress and removed stage: needs information Not enough info to reproduce the issue labels May 28, 2019
@jennifer-shehane jennifer-shehane added pkg/server This is due to an issue in the packages/server directory topic: screenshots 📸 type: bug labels May 28, 2019
@cypress-bot cypress-bot bot added stage: needs review The PR code is done & tested, needs review and removed stage: work in progress labels May 28, 2019
@jennifer-shehane
Copy link
Member

I have a PR open that should fix this. #4317

@cypress-bot cypress-bot bot added stage: work in progress stage: needs review The PR code is done & tested, needs review and removed stage: needs review The PR code is done & tested, needs review stage: work in progress labels May 28, 2019
@amirdhaoui
Copy link
Author

amirdhaoui commented May 28, 2019

cypress.json contains only the application URL. I read in other issue that this problem occurs with native fetch instead of XHR but I am not sure and I am working on now. I saw the video I found one time this error" Connection timed out". I am trying to understand the origin of this error. It can be that the cypress doesn't get the whole application on time so thats' why it sends a "Cannot read property" error.

Below you find the whole cypress log. hope it helps.

2019-05-28T09:20:14.166Z cypress:cli cli starts with arguments ["/usr/bin/node","/root/node_modules/.bin/cypress","run"]
2019-05-28T09:20:14.178Z cypress:cli NODE_OPTIONS is not set
2019-05-28T09:20:14.179Z cypress:cli program parsing arguments
2019-05-28T09:20:14.189Z cypress:cli running Cypress
2019-05-28T09:20:14.621Z cypress:cli parsed cli options {}
2019-05-28T09:20:14.630Z cypress:cli verifying Cypress app
2019-05-28T09:20:14.631Z cypress:cli checking environment variables
2019-05-28T09:20:14.663Z cypress:cli checking if executable exists /root/.cache/Cypress/3.3.1/Cypress/Cypress
2019-05-28T09:20:14.674Z cypress:cli Binary is executable? : true
2019-05-28T09:20:14.675Z cypress:cli binaryDir is  /root/.cache/Cypress/3.3.1/Cypress
2019-05-28T09:20:14.675Z cypress:cli Reading binary package.json from: /root/.cache/Cypress/3.3.1/Cypress/resources/app/package.json
2019-05-28T09:20:14.699Z cypress:cli Found binary version 3.3.1 installed in: /root/.cache/Cypress/3.3.1/Cypress
2019-05-28T09:20:14.713Z cypress:cli could not read binary_state.json file
2019-05-28T09:20:14.713Z cypress:cli {}
2019-05-28T09:20:14.721Z cypress:cli is Verified ? undefined
2019-05-28T09:20:14.722Z cypress:cli running binary verification check 3.3.1
2019-05-28T09:20:14.759Z cypress:cli clearing out the verified version
2019-05-28T09:20:14.772Z cypress:cli undefined DISPLAY environment variable
2019-05-28T09:20:14.772Z cypress:cli Cypress will spawn its own Xvfb
2019-05-28T09:20:14.772Z cypress:cli needs Xvfb? true
2019-05-28T09:20:14.773Z cypress:cli Starting Xvfb
2019-05-28T09:20:14.856Z cypress:cli running smoke test
2019-05-28T09:20:14.856Z cypress:cli using Cypress executable /root/.cache/Cypress/3.3.1/Cypress/Cypress
2019-05-28T09:20:14.856Z cypress:cli smoke test command: /root/.cache/Cypress/3.3.1/Cypress/Cypress --smoke-test --ping=156
2019-05-28T09:20:23.787Z cypress:cli smoke test stdout "156"
2019-05-28T09:20:23.789Z cypress:cli Stopping Xvfb
2019-05-28T09:20:24.578Z cypress:cli write verified: true
2019-05-28T09:20:24.579Z cypress:cli could not read binary_state.json file
2019-05-28T09:20:24.614Z cypress:cli processing run options
2019-05-28T09:20:24.614Z cypress:cli --key is not set, looking up environment variable CYPRESS_RECORD_KEY
2019-05-28T09:20:24.614Z cypress:cli run to spawn.start args ["--run-project","/root"]
2019-05-28T09:20:24.615Z cypress:cli undefined DISPLAY environment variable
2019-05-28T09:20:24.615Z cypress:cli Cypress will spawn its own Xvfb
2019-05-28T09:20:24.615Z cypress:cli needs to start own Xvfb? true
2019-05-28T09:20:24.621Z cypress:cli Starting Xvfb
2019-05-28T09:20:24.668Z cypress:cli spawning, should retry on display problem? false
2019-05-28T09:20:24.694Z cypress:cli passing DISPLAY :99
2019-05-28T09:20:24.695Z cypress:cli spawning Cypress with executable: /root/.cache/Cypress/3.3.1/Cypress/Cypress
2019-05-28T09:20:24.716Z cypress:cli spawn args [ '--run-project', '/root', '--cwd', '/root' ] { detached: false, stdio: [ 'inherit', 'inherit', 'pipe' ] }
2019-05-28T09:20:27.877Z cypress:ts Running without ts-node hook in environment "production"
2019-05-28T09:20:29.879Z cypress:server:cypress starting cypress with argv [ '/root/.cache/Cypress/3.3.1/Cypress/Cypress', '--run-project', '/root', '--cwd', '/root' ]
2019-05-28T09:20:32.125Z cypress:server:args argv array: [ '/root/.cache/Cypress/3.3.1/Cypress/Cypress', '--run-project', '/root', '--cwd', '/root' ]
2019-05-28T09:20:32.162Z cypress:server:args argv parsed: { _: [ '/root/.cache/Cypress/3.3.1/Cypress/Cypress' ], runProject: '/root', cwd: '/root' }
2019-05-28T09:20:32.164Z cypress:server:args options { _: [ '/root/.cache/Cypress/3.3.1/Cypress/Cypress' ], runProject: '/root', cwd: '/root', config: {} }
2019-05-28T09:20:32.174Z cypress:server:args argv options: { _: [ '/root/.cache/Cypress/3.3.1/Cypress/Cypress' ], runProject: '/root', cwd: '/root', config: {}, projectRoot: '/root', run: true }
2019-05-28T09:20:32.471Z cypress:server:appdata path: /root/.config/Cypress/cy/production
2019-05-28T09:20:32.578Z cypress:server:cypress starting in mode run
2019-05-28T09:20:38.032Z cypress:server:appdata path: /root/.config/Cypress/cy/production
2019-05-28T09:20:39.198Z cypress:server:appdata path: /root/.config/Cypress/cy/production/cache
2019-05-28T09:20:59.236Z cypress:server:appdata path: /root/.config/Cypress/cy/production/browsers
2019-05-28T09:20:59.741Z cypress:server:timers queuing timer id 1 after 500 ms
2019-05-28T09:20:59.762Z cypress:server:timers child received timer id 1
2019-05-28T09:21:00.302Z cypress:server:timers child sending timer id 1
2019-05-28T09:21:00.315Z cypress:server:timers clearing timer id 1 from queue { '1': { args: [], ms: 500, cb: [Function] } }
2019-05-28T09:21:00.316Z cypress:server:run run mode ready with options { _: [ '/root/.cache/Cypress/3.3.1/Cypress/Cypress' ], runProject: '/root', cwd: '/root', config: {}, projectRoot: '/root', run: true }
2019-05-28T09:21:00.334Z cypress:server:project Project created /root
2019-05-28T09:21:00.335Z cypress:server:openproject opening project /root
2019-05-28T09:21:00.336Z cypress:server:project opening project instance /root
2019-05-28T09:21:00.400Z cypress:server:config setting support file /root/cypress/support
2019-05-28T09:21:00.402Z cypress:server:config for project root /root
2019-05-28T09:21:00.418Z cypress:server:config set support folder /root/cypress/support
2019-05-28T09:21:00.419Z cypress:server:config setting plugins file /root/cypress/plugins
2019-05-28T09:21:00.419Z cypress:server:config for project root /root
2019-05-28T09:21:00.420Z cypress:server:config set pluginsFile to /root/cypress/plugins/index.js
2019-05-28T09:21:00.430Z cypress:server:config set scaffold paths
2019-05-28T09:21:00.458Z 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"]
2019-05-28T09:21:00.461Z cypress:server:config got file tree
2019-05-28T09:21:00.466Z cypress:server:project get saved state
2019-05-28T09:21:00.467Z cypress:server:saved_state noop saved state
2019-05-28T09:21:00.475Z cypress:server:scaffold plugins folder /root/cypress/plugins
2019-05-28T09:21:00.478Z cypress:server:scaffold verify scaffolding in /root/cypress/plugins
2019-05-28T09:21:00.478Z cypress:server:scaffold folder /root/cypress/plugins already exists
2019-05-28T09:21:00.483Z cypress:server:plugins plugins.init /root/cypress/plugins/index.js
2019-05-28T09:21:02.511Z cypress:server:plugins:child pluginsFile: /root/cypress/plugins/index.js
2019-05-28T09:21:02.523Z cypress:server:plugins:child require pluginsFile
2019-05-28T09:21:02.541Z cypress:server:plugins:child run plugins function
2019-05-28T09:21:02.551Z cypress:server:plugins:child register event _get:task:body with id 0
2019-05-28T09:21:02.557Z cypress:server:plugins:child register event _get:task:keys with id 1
2019-05-28T09:21:02.610Z cypress:server:plugins register plugins process event _get:task:body with id 0
2019-05-28T09:21:02.614Z cypress:server:plugins register event '_get:task:body'
2019-05-28T09:21:02.614Z cypress:server:plugins register plugins process event _get:task:keys with id 1
2019-05-28T09:21:02.614Z cypress:server:plugins register event '_get:task:keys'
2019-05-28T09:21:02.615Z cypress:server:project plugin config yielded: null
2019-05-28T09:21:02.637Z cypress:server:buffers resetting buffers
2019-05-28T09:21:03.171Z cypress:server:server Server listening on  { address: '127.0.0.1', family: 'IPv4', port: 40132 }
2019-05-28T09:21:03.174Z cypress:server:appdata path: /root/.config/Cypress/cy/production/proxy
2019-05-28T09:21:04.534Z cypress:https-proxy Created SNI HTTPS Proxy on port 45117
2019-05-28T09:21:04.542Z cypress:server:ensure-url checking that baseUrl is available { baseUrl: 'http://192.168.4.28/',
  delaysRemaining: [ 3000, 3000, 4000 ],
  retryIntervals: [ 3000, 3000, 4000 ] }
2019-05-28T09:21:04.614Z cypress:server:server Setting remoteAuth undefined
2019-05-28T09:21:04.626Z cypress:server:cors Parsed URL { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:04.627Z cypress:server:server Setting remoteOrigin http://192.168.4.28
2019-05-28T09:21:04.628Z cypress:server:server Setting remoteHostAndPort { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:04.631Z cypress:server:server Setting remoteDocDomain 192.168.4.28
2019-05-28T09:21:04.632Z cypress:server:server Getting remote state: { auth: undefined, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: undefined, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:04.646Z cypress:server:project project config: { videoCompression: false, baseUrl: 'http://192.168.4.28/', projectRoot: '/root', projectName: 'root', morgan: false, isTextTerminal: true, socketId: 'nw5sb', report: true, port: 40132, hosts: null, userAgent: null, reporter: 'spec', reporterOptions: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', testFiles: '**/*.*', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, video: true, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: '/root', videosFolder: '/root/cypress/videos', supportFile: '/root/cypress/support/index.js', fixturesFolder: '/root/cypress/fixtures', integrationFolder: '/root/cypress/integration', screenshotsFolder: '/root/cypress/screenshots', namespace: '__cypress', pluginsFile: '/root/cypress/plugins/index.js', javascripts: [], env: { username: 'amir.dhaoui', password: 'xxxxxxxx', userrole: { requester: [Object], coordinator: [Object] }, tlc: { NewTicket: [Array] } }, cypressEnv: 'production', parentTestsFolder: '/root/cypress', parentTestsFolderDisplay: 'root/cypress', supportFolder: '/root/cypress/support', integrationExampleName: 'examples', integrationExamplePath: '/root/cypress/integration/examples', scaffoldedFiles: [ { name: 'cypress', children: [Array] } ], state: {}, proxyUrl: 'http://localhost:40132', browserUrl: 'http://192.168.4.28/__/', reporterUrl: 'http://192.168.4.28/__cypress/reporter', xhrUrl: '__cypress/xhrs/' }
2019-05-28T09:21:04.647Z cypress:server:reporter trying to load reporter: spec
2019-05-28T09:21:04.647Z cypress:server:reporter spec is Mocha reporter
2019-05-28T09:21:04.684Z cypress:server:project scaffolding project /root
2019-05-28T09:21:04.689Z cypress:server:scaffold support folder /root/cypress/support, support file /root/cypress/support/index.js
2019-05-28T09:21:04.692Z cypress:server:scaffold verify scaffolding in /root/cypress/support
2019-05-28T09:21:04.693Z cypress:server:scaffold folder /root/cypress/support already exists
2019-05-28T09:21:04.698Z cypress:server:project attempt watch plugins file: /root/cypress/plugins/index.js
2019-05-28T09:21:04.712Z cypress:server:project plugins file found? true
2019-05-28T09:21:04.712Z cypress:server:project watch plugins file
2019-05-28T09:21:04.888Z cypress:server:timers queuing timer id 2 after 0 ms
2019-05-28T09:21:04.893Z cypress:server:timers child received timer id 2
2019-05-28T09:21:04.894Z cypress:server:timers child sending timer id 2
2019-05-28T09:21:04.902Z cypress:server:timers clearing timer id 2 from queue { '2': { args: [], ms: 0, cb: [Function: clear] } }
2019-05-28T09:21:04.906Z cypress:server:timers clearing timer id 2 from queue {}
2019-05-28T09:21:04.952Z cypress:server:specs looking for test specs in the folder: /root/cypress/integration
2019-05-28T09:21:05.016Z cypress:server:profilecleaner found 0 root level profile matches: []
2019-05-28T09:21:05.022Z cypress:server:profilecleaner found 0 profile folders: []
2019-05-28T09:21:05.026Z cypress:server:profilecleaner found 0 profile folders: []
2019-05-28T09:21:05.045Z cypress:launcher checking one browser chrome
2019-05-28T09:21:05.050Z cypress:launcher looking up chrome on linux platform
2019-05-28T09:21:05.050Z cypress:launcher finding version string using command "google-chrome --version"
2019-05-28T09:21:05.128Z cypress:launcher checking one browser chrome
2019-05-28T09:21:05.134Z cypress:launcher looking up chrome on linux platform
2019-05-28T09:21:05.134Z cypress:launcher finding version string using command "chrome --version"
2019-05-28T09:21:05.183Z cypress:launcher checking one browser chrome
2019-05-28T09:21:05.185Z cypress:launcher looking up chrome on linux platform
2019-05-28T09:21:05.186Z cypress:launcher finding version string using command "google-chrome-stable --version"
2019-05-28T09:21:05.266Z cypress:launcher Received error detecting browser binary: "google-chrome" with error: spawn google-chrome ENOENT
2019-05-28T09:21:05.274Z cypress:launcher browser chrome not installed
2019-05-28T09:21:05.276Z cypress:launcher Received error detecting browser binary: "chrome" with error: spawn chrome ENOENT
2019-05-28T09:21:05.286Z cypress:launcher browser chrome not installed
2019-05-28T09:21:05.287Z cypress:launcher Received error detecting browser binary: "google-chrome-stable" with error: spawn google-chrome-stable ENOENT
2019-05-28T09:21:05.288Z cypress:launcher browser chrome not installed
2019-05-28T09:21:05.294Z cypress:launcher checking one browser chromium
2019-05-28T09:21:05.294Z cypress:launcher looking up chromium on linux platform
2019-05-28T09:21:05.295Z cypress:launcher finding version string using command "chromium-browser --version"
2019-05-28T09:21:05.352Z cypress:launcher checking one browser chromium
2019-05-28T09:21:05.354Z cypress:launcher looking up chromium on linux platform
2019-05-28T09:21:05.357Z cypress:launcher finding version string using command "chromium --version"
2019-05-28T09:21:05.420Z cypress:launcher Received error detecting browser binary: "chromium-browser" with error: spawn chromium-browser ENOENT
2019-05-28T09:21:05.427Z cypress:launcher browser chromium not installed
2019-05-28T09:21:05.429Z cypress:launcher Received error detecting browser binary: "chromium" with error: spawn chromium ENOENT
2019-05-28T09:21:05.429Z cypress:launcher browser chromium not installed
2019-05-28T09:21:05.432Z cypress:launcher checking one browser canary
2019-05-28T09:21:05.432Z cypress:launcher looking up canary on linux platform
2019-05-28T09:21:05.433Z cypress:launcher finding version string using command "google-chrome-canary --version"
2019-05-28T09:21:05.502Z cypress:server:specs found spec file /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:05.508Z cypress:server:specs found 1 spec files: [ { name: 'examples/ExecuteTestCase.js', relative: 'cypress/integration/examples/ExecuteTestCase.js', absolute: '/root/cypress/integration/examples/ExecuteTestCase.js' } ]
2019-05-28T09:21:05.509Z cypress:server:run found '1' specs using spec pattern 'null': [ 'examples/ExecuteTestCase.js' ]
2019-05-28T09:21:05.516Z cypress:launcher Received error detecting browser binary: "google-chrome-canary" with error: spawn google-chrome-canary ENOENT
2019-05-28T09:21:05.522Z cypress:launcher browser canary not installed
2019-05-28T09:21:05.869Z cypress:server:run about to run spec { spec: { name: 'examples/ExecuteTestCase.js', relative: 'cypress/integration/examples/ExecuteTestCase.js', absolute: '/root/cypress/integration/examples/ExecuteTestCase.js' }, isHeadless: true, browser: { name: 'electron', family: 'electron', displayName: 'Electron', version: '61.0.3163.100', path: '', majorVersion: '61', info: 'Electron is the default browser that comes with Cypress. This is the browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.', isHeadless: true, isHeaded: false } }
2019-05-28T09:21:06.073Z cypress:server:video capture started { command: 'ffmpeg -n 20 /root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/@ffmpeg-installer/linux-x64/ffmpeg -f image2pipe -use_wallclock_as_timestamps 1 -i pipe:0 -y -vcodec libx264 -preset ultrafast /root/cypress/videos/examples/ExecuteTestCase.js.mp4' }
2019-05-28T09:21:06.076Z cypress:server:run waiting for socket connection... { id: 'nw5sb' }
2019-05-28T09:21:06.082Z cypress:server:openproject resetting project state, preparing to launch browser
2019-05-28T09:21:06.083Z cypress:server:project resetting project instance /root
2019-05-28T09:21:06.084Z cypress:server:buffers resetting buffers
2019-05-28T09:21:06.084Z cypress:server:server Setting remoteAuth undefined
2019-05-28T09:21:06.086Z cypress:server:cors Parsed URL { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:06.086Z cypress:server:server Setting remoteOrigin http://192.168.4.28
2019-05-28T09:21:06.086Z cypress:server:server Setting remoteHostAndPort { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:06.087Z cypress:server:server Setting remoteDocDomain 192.168.4.28
2019-05-28T09:21:06.088Z cypress:server:server Getting remote state: { auth: undefined, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: undefined, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:06.088Z cypress:server:timers queuing timer id 3 after 30000 ms
2019-05-28T09:21:06.089Z cypress:server:timers child received timer id 3
2019-05-28T09:21:06.093Z cypress:server:openproject launching browser: { name: 'electron', family: 'electron', displayName: 'Electron', version: '61.0.3163.100', path: '', majorVersion: '61', info: 'Electron is the default browser that comes with Cypress. This is the browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.', isHeadless: true, isHeaded: false }, spec: cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:06.111Z cypress:server:browsers opening browser { name: 'electron', family: 'electron', displayName: 'Electron', version: '61.0.3163.100', path: '', majorVersion: '61', info: 'Electron is the default browser that comes with Cypress. This is the browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.', isHeadless: true, isHeaded: false }
2019-05-28T09:21:06.113Z cypress:server:browsers:electron open { browser: { name: 'electron', family: 'electron', displayName: 'Electron', version: '61.0.3163.100', path: '', majorVersion: '61', info: 'Electron is the default browser that comes with Cypress. This is the browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.', isHeadless: true, isHeaded: false }, url: 'http://192.168.4.28/__/#/tests/integration/examples/ExecuteTestCase.js' }
2019-05-28T09:21:06.113Z cypress:server:saved_state noop saved state
2019-05-28T09:21:06.115Z cypress:server:video capture stderr log { message: 'ffmpeg version N-47683-g0e8eb07980-static https://johnvansickle.com/ffmpeg/  Copyright (c) 2000-2018 the FFmpeg developers' }
2019-05-28T09:21:06.116Z cypress:server:video capture stderr log { message: '  built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516' }
2019-05-28T09:21:06.117Z cypress:server:video capture stderr log { message: '  configuration: --enable-gpl --enable-version3 --enable-static --disable-debug --disable-ffplay --disable-indev=sndio --disable-outdev=sndio --cc=gcc-6 --enable-fontconfig --enable-frei0r --enable-gnutls --enable-gray --enable-libaom --enable-libfribidi --enable-libass --enable-libvmaf --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librubberband --enable-libsoxr --enable-libspeex --enable-libvorbis --enable-libopus --enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg' }
2019-05-28T09:21:06.117Z cypress:server:video capture stderr log { message: '  libavutil      56. 24.101 / 56. 24.101' }
2019-05-28T09:21:06.118Z cypress:server:video capture stderr log { message: '  libavcodec     58. 42.100 / 58. 42.100' }
2019-05-28T09:21:06.118Z cypress:server:video capture stderr log { message: '  libavformat    58. 24.100 / 58. 24.100' }
2019-05-28T09:21:06.119Z cypress:server:video capture stderr log { message: '  libavdevice    58.  6.101 / 58.  6.101' }
2019-05-28T09:21:06.120Z cypress:server:video capture stderr log { message: '  libavfilter     7. 46.101 /  7. 46.101' }
2019-05-28T09:21:06.121Z cypress:server:video capture stderr log { message: '  libswscale      5.  4.100 /  5.  4.100' }
2019-05-28T09:21:06.121Z cypress:server:video capture stderr log { message: '  libswresample   3.  4.100 /  3.  4.100' }
2019-05-28T09:21:06.122Z cypress:server:video capture stderr log { message: '  libpostproc    55.  4.100 / 55.  4.100' }
2019-05-28T09:21:06.123Z cypress:server:browsers:electron received saved state {}
2019-05-28T09:21:06.127Z cypress:server:browsers:electron browser window options { width: 1280, height: 720, show: false, recordFrameRate: 20, automationMiddleware: { onAfterResponse: [Function] }, projectRoot: '/root', browsers: undefined, proxyUrl: 'http://localhost:40132', userAgent: null, proxyServer: 'http://localhost:40132', socketIoRoute: '/__socket.io', chromeWebSecurity: true, url: 'http://192.168.4.28/__/#/tests/integration/examples/ExecuteTestCase.js', isTextTerminal: true, browser: { name: 'electron', family: 'electron', displayName: 'Electron', version: '61.0.3163.100', path: '', majorVersion: '61', info: 'Electron is the default browser that comes with Cypress. This is the browser that runs in headless mode. Selecting this browser is useful when debugging. The version number indicates the underlying Chromium version that Electron uses.', isHeadless: true, isHeaded: false }, x: null, y: null, devTools: false, minWidth: 100, minHeight: 100, contextMenu: true, partition: 'persist:run-192', trackState: { width: 'browserWidth', height: 'browserHeight', x: 'browserX', y: 'browserY', devTools: 'isBrowserDevToolsOpen' }, frame: true, webPreferences: { partition: null, chromeWebSecurity: true, nodeIntegration: false, backgroundThrottling: false } }
2019-05-28T09:21:06.128Z cypress:server:plugins plugin event registered? { event: 'before:browser:launch', isRegistered: false }
2019-05-28T09:21:06.129Z cypress:server:browsers:electron launching browser window to url: http://192.168.4.28/__/#/tests/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:06.165Z cypress:server:browsers:electron debugger attached
2019-05-28T09:21:06.166Z cypress:server:browsers:electron clearing cache
2019-05-28T09:21:06.214Z cypress:server:browsers browser opened
2019-05-28T09:21:06.214Z cypress:server:timers queuing timer id 4 after 1000 ms
2019-05-28T09:21:06.215Z cypress:server:timers child received timer id 4
2019-05-28T09:21:06.910Z cypress:server:routes Serving Cypress front-end by requested URL: /__/
2019-05-28T09:21:06.911Z cypress:server:server Getting remote state: { auth: undefined, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: undefined, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:06.918Z cypress:server:runner serving runner index.html with config { version: '3.3.1', platform: 'linux', arch: 'x64', projectName: 'root' }
2019-05-28T09:21:07.221Z cypress:server:timers child sending timer id 4
2019-05-28T09:21:07.222Z cypress:server:timers clearing timer id 4 from queue { '3': { args: [], ms: 30000, cb: [Function: timeoutTimeout] }, '4': { args: [], ms: 1000, cb: [Function] } }
2019-05-28T09:21:13.662Z cypress:server:browsers:electron console message: { column: 17, level: 'info', line: 162528, source: 'console-api', text: '%cDownload the React DevTools for a better development experience: https://fb.me/react-devtools', url: 'http://192.168.4.28/__cypress/runner/cypress_runner.js' }
2019-05-28T09:21:16.002Z cypress:server:server Got CONNECT request from 192.168.4.28:80
2019-05-28T09:21:16.011Z cypress:https-proxy Writing browserSocket connection headers { url: '192.168.4.28:80', headLength: 0, headers: { host: '192.168.4.28:80', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36' } }
2019-05-28T09:21:16.061Z cypress:https-proxy Got first head bytes { url: '192.168.4.28:80', head: 'GET /__socket.io/?EIO=3&transport=websocket HTTP/1.1\r\nHost: 192.' }
2019-05-28T09:21:16.062Z cypress:server:cors Parsed URL { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:16.063Z cypress:server:server HTTPS request does match URL: https://192.168.4.28:80 with props: { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:16.063Z cypress:https-proxy Not making direct connection { url: '192.168.4.28:80' }
2019-05-28T09:21:16.074Z cypress:https-proxy Making intercepted connection to 40132
2019-05-28T09:21:16.134Z cypress:network:connect successfully connected { opts: { port: 40132, host: 'localhost', getDelayMsForRetry: [Function: getDelayForRetry] }, iteration: 0 }
2019-05-28T09:21:16.135Z cypress:https-proxy received upstreamSocket callback for request { port: 40132, hostname: 'localhost', err: undefined }
2019-05-28T09:21:16.138Z cypress:server:server Got UPGRADE request from /__socket.io/?EIO=3&transport=websocket
2019-05-28T09:21:16.252Z cypress:server:timers queuing timer id 5 after 85000 ms
2019-05-28T09:21:16.257Z cypress:server:timers child received timer id 5
2019-05-28T09:21:16.284Z cypress:server:socket socket connected
2019-05-28T09:21:16.637Z cypress:server:browsers:electron console message: { column: 17, level: 'info', line: 118992, source: 'console-api', text: '%cDownload the React DevTools for a better development experience: https://fb.me/react-devtools', url: 'http://192.168.4.28/__cypress/runner/cypress_runner.js' }
2019-05-28T09:21:17.135Z cypress:server:timers clearing timer id 5 from queue { '3': { args: [], ms: 30000, cb: [Function: timeoutTimeout] }, '5': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:17.135Z cypress:server:timers queuing timer id 6 after 85000 ms
2019-05-28T09:21:17.136Z cypress:server:timers child received timer id 6
2019-05-28T09:21:17.358Z cypress:server:timers clearing timer id 6 from queue { '3': { args: [], ms: 30000, cb: [Function: timeoutTimeout] }, '6': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:17.366Z cypress:server:timers queuing timer id 7 after 85000 ms
2019-05-28T09:21:17.366Z cypress:server:timers child received timer id 7
2019-05-28T09:21:17.369Z cypress:server:timers queuing timer id 8 after 1000 ms
2019-05-28T09:21:17.378Z cypress:server:timers child received timer id 8
2019-05-28T09:21:17.380Z cypress:server:timers clearing timer id 8 from queue { '3': { args: [], ms: 30000, cb: [Function: timeoutTimeout] }, '7': { args: [], ms: 85000, cb: [Function] }, '8': { args: [], ms: 1000, cb: [Function: timeoutTimeout] } }
2019-05-28T09:21:17.417Z cypress:server:browsers:electron console message: { column: 15, level: 'error', line: 96956, source: 'console-api', text: 'Warning: Failed prop type: The prop `config.browsers` is marked as required in `App`, but its value is `undefined`.\n    in App (created by Container)\n    in Container', url: 'http://192.168.4.28/__cypress/runner/cypress_runner.js' }
2019-05-28T09:21:18.008Z cypress:server:timers clearing timer id 7 from queue { '3': { args: [], ms: 30000, cb: [Function: timeoutTimeout] }, '7': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:18.009Z cypress:server:timers queuing timer id 9 after 85000 ms
2019-05-28T09:21:18.014Z cypress:server:timers child received timer id 9
2019-05-28T09:21:18.015Z cypress:server:run got socket connection { id: 'nw5sb' }
2019-05-28T09:21:18.018Z cypress:server:timers clearing timer id 3 from queue { '3': { args: [], ms: 30000, cb: [Function: timeoutTimeout] }, '9': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:18.030Z cypress:server:browsers:electron console message: { column: 32, level: 'log', line: 172393, source: 'console-api', text: 'console.clear', url: 'http://192.168.4.28/__cypress/runner/cypress_runner.js' }
2019-05-28T09:21:18.378Z cypress:server:timers child sending timer id 8
2019-05-28T09:21:19.079Z cypress:server:server Getting remote state: { auth: undefined, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: undefined, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:19.114Z cypress:server:timers clearing timer id 9 from queue { '9': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:19.114Z cypress:server:timers queuing timer id 10 after 85000 ms
2019-05-28T09:21:19.115Z cypress:server:timers child received timer id 10
2019-05-28T09:21:19.248Z cypress:server:timers clearing timer id 10 from queue { '10': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:19.252Z cypress:server:timers queuing timer id 11 after 85000 ms
2019-05-28T09:21:19.253Z cypress:server:timers child received timer id 11
2019-05-28T09:21:19.258Z cypress:server:socket watch test file 'integration/examples/ExecuteTestCase.js'
2019-05-28T09:21:19.274Z cypress:server:socket will watch test file path 'cypress/integration/examples/ExecuteTestCase.js'
2019-05-28T09:21:19.274Z cypress:server:preprocessor getFile /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:19.283Z cypress:server:appdata path: /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:19.284Z cypress:server:plugins plugin event registered? { event: 'file:preprocessor', isRegistered: false }
2019-05-28T09:21:19.286Z cypress:server:preprocessor set default preprocessor
2019-05-28T09:21:21.918Z cypress:browserify received user options: {}
2019-05-28T09:21:21.918Z cypress:server:plugins register event 'file:preprocessor'
2019-05-28T09:21:21.921Z cypress:server:plugins execute plugin event 'file:preprocessor' with args: EventEmitter { domain: null, _events: { rerun: [Function] }, _eventsCount: 1, _maxListeners: undefined, filePath: '/root/cypress/integration/examples/ExecuteTestCase.js', shouldWatch: false, outputPath: '/root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/integration/examples/ExecuteTestCase.js' } undefined undefined
2019-05-28T09:21:21.927Z cypress:browserify get: /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:21.927Z cypress:browserify input: /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:21.927Z cypress:browserify output: /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:21.928Z cypress:browserify browserifyOptions { extensions: [ '.js', '.jsx', '.coffee', '.cjsx' ], transform: [ [ '/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/@cypress/browserify-preprocessor/cjsxify.js', {} ], [ '/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/babelify/index.js', [Object] ] ], plugin: [], cache: {}, packageCache: {}, entries: [ '/root/cypress/integration/examples/ExecuteTestCase.js' ] }:
2019-05-28T09:21:22.128Z cypress:server:controllers:spec request for { spec: 'cypress/support/index.js' }
2019-05-28T09:21:22.129Z cypress:server:preprocessor getFile /root/cypress/support/index.js
2019-05-28T09:21:22.131Z cypress:server:appdata path: /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/support/index.js
2019-05-28T09:21:22.133Z cypress:server:plugins plugin event registered? { event: 'file:preprocessor', isRegistered: true }
2019-05-28T09:21:22.141Z cypress:server:plugins execute plugin event 'file:preprocessor' with args: EventEmitter { domain: null, _events: { rerun: [Function] }, _eventsCount: 1, _maxListeners: undefined, filePath: '/root/cypress/support/index.js', shouldWatch: false, outputPath: '/root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/support/index.js' } undefined undefined
2019-05-28T09:21:22.143Z cypress:browserify get: /root/cypress/support/index.js
2019-05-28T09:21:22.143Z cypress:browserify input: /root/cypress/support/index.js
2019-05-28T09:21:22.144Z cypress:browserify output: /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/support/index.js
2019-05-28T09:21:22.146Z cypress:browserify browserifyOptions { extensions: [ '.js', '.jsx', '.coffee', '.cjsx' ], transform: [ [ '/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/@cypress/browserify-preprocessor/cjsxify.js', [Object] ], [ '/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/babelify/index.js', [Object] ] ], plugin: [], cache: {}, packageCache: {}, entries: [ '/root/cypress/support/index.js' ] }:
2019-05-28T09:21:22.179Z cypress:server:controllers:spec request for { spec: 'cypress/integration/examples/ExecuteTestCase.js' }
2019-05-28T09:21:22.180Z cypress:server:preprocessor getFile /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:22.182Z cypress:server:plugins plugin event registered? { event: 'file:preprocessor', isRegistered: true }
2019-05-28T09:21:22.182Z cypress:server:preprocessor headless and already processed
2019-05-28T09:21:22.292Z cypress:browserify making bundle /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:22.363Z cypress:browserify making bundle /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/support/index.js
2019-05-28T09:21:28.198Z cypress:browserify finished bundling: /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:21:28.208Z cypress:server:controllers:spec sending spec { filePath: '/root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/integration/examples/ExecuteTestCase.js' }
2019-05-28T09:21:36.109Z cypress:server:timers child sending timer id 3
2019-05-28T09:21:41.206Z cypress:browserify finished bundling: /root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/support/index.js
2019-05-28T09:21:41.220Z cypress:server:controllers:spec sending spec { filePath: '/root/.config/Cypress/cy/production/projects/root-887904812217cca9bc2b9adb875daf42/bundles/cypress/support/index.js' }
2019-05-28T09:21:41.471Z cypress:server:timers clearing timer id 11 from queue { '11': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:41.475Z cypress:server:timers queuing timer id 12 after 85000 ms
2019-05-28T09:21:41.476Z cypress:server:timers child received timer id 12
2019-05-28T09:21:41.566Z cypress:server:timers clearing timer id 12 from queue { '12': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:41.566Z cypress:server:timers queuing timer id 13 after 85000 ms
2019-05-28T09:21:41.606Z cypress:server:timers child received timer id 13
2019-05-28T09:21:41.607Z cypress:server:project received runnables { id: 'r1', title: '', root: true, type: 'suite', tests: [], suites: [ { id: 'r2', title: '16680 Mega Scenario for test', root: false, type: 'suite', tests: [Array], suites: [] } ] }
2019-05-28T09:21:41.619Z cypress:server:reporter trying to load reporter: spec
2019-05-28T09:21:41.641Z cypress:server:reporter spec is Mocha reporter
2019-05-28T09:21:42.153Z cypress:server:timers clearing timer id 13 from queue { '13': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:42.153Z cypress:server:timers queuing timer id 14 after 85000 ms
2019-05-28T09:21:42.156Z cypress:server:timers child received timer id 14
2019-05-28T09:21:42.157Z cypress:server:project onMocha start
2019-05-28T09:21:42.160Z cypress:server:reporter got mocha event 'start' with args: [ { start: '2019-05-28T09:21:41.781Z' } ]
2019-05-28T09:21:42.191Z cypress:server:timers clearing timer id 14 from queue { '14': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:42.191Z cypress:server:timers queuing timer id 15 after 85000 ms
2019-05-28T09:21:42.192Z cypress:server:timers child received timer id 15
2019-05-28T09:21:42.195Z cypress:server:project onMocha suite
2019-05-28T09:21:42.201Z cypress:server:reporter got mocha event 'suite' with args: [ { id: 'r1', title: '', root: true, type: 'suite' } ]
2019-05-28T09:21:42.323Z cypress:server:timers clearing timer id 15 from queue { '15': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:42.323Z cypress:server:timers queuing timer id 16 after 85000 ms
2019-05-28T09:21:42.326Z cypress:server:timers child received timer id 16
2019-05-28T09:21:42.327Z cypress:server:project onMocha suite
2019-05-28T09:21:42.334Z cypress:server:reporter got mocha event 'suite' with args: [ { id: 'r2', title: '16680 Mega Scenario for test', root: false, type: 'suite' } ]
2019-05-28T09:21:42.668Z cypress:server:timers clearing timer id 16 from queue { '16': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:42.669Z cypress:server:timers queuing timer id 17 after 85000 ms
2019-05-28T09:21:42.673Z cypress:server:timers child received timer id 17
2019-05-28T09:21:42.674Z cypress:server:project onMocha test
2019-05-28T09:21:42.675Z cypress:server:reporter got mocha event 'test' with args: [ { id: 'r3', body: 'function () {\n          var steps = testcaseconfig.steps;\n          console.log(steps[0]);\n\n          if (steps[0].stype == "newStep") {\n            cy.visit(\'\');\n            cy.wait(1000);\n          } else {\n            cy.logintlc();\n            cy.wait(1000);\n          }\n\n          var win;\n          cy.window().then(function (window) {\n            var combinedSteps = []; //console.log(testcaseconfig.tcid);\n            //console.log(testcaseconfig.steps);\n\n            var stepsArray = testcaseconfig.steps; //fnBuildSteps(testcaseconfig.steps, testcaseconfig.data, key, combinedSteps, testcaseconfig.data)\n\n            console.log(stepsArray);\n            cy.executeCustomElementSteps(stepsArray);\n          });\n        }', type: 'test' } ]
2019-05-28T09:21:42.812Z cypress:server:timers clearing timer id 17 from queue { '17': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:42.818Z cypress:server:timers queuing timer id 18 after 85000 ms
2019-05-28T09:21:42.822Z cypress:server:timers child received timer id 18
2019-05-28T09:21:42.823Z cypress:server:socket automation:request get:cookies { domain: '192.168.4.28' }
2019-05-28T09:21:42.824Z cypress:server:cookies getting:cookies { domain: '192.168.4.28' }
2019-05-28T09:21:42.912Z cypress:server:cookies received get:cookies []
2019-05-28T09:21:43.074Z cypress:server:timers clearing timer id 18 from queue { '18': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:43.075Z cypress:server:timers queuing timer id 19 after 85000 ms
2019-05-28T09:21:43.075Z cypress:server:timers child received timer id 19
2019-05-28T09:21:43.078Z cypress:server:browsers:electron console message: { column: 19, level: 'log', line: 38, source: 'console-api', text: '[object Object]', url: 'http://192.168.4.28/__cypress/tests?p=cypress/integration/examples/ExecuteTestCase.js-246' }
2019-05-28T09:21:43.870Z cypress:server:timers clearing timer id 19 from queue { '19': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:21:43.870Z cypress:server:timers queuing timer id 20 after 85000 ms
2019-05-28T09:21:43.871Z cypress:server:timers child received timer id 20
2019-05-28T09:21:43.872Z cypress:server:socket backend:request { eventName: 'resolve:url', args: [ 'http://192.168.4.28/', { auth: null, failOnStatusCode: true, retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, method: 'GET', body: null, headers: {}, timeout: 30000 } ] }
2019-05-28T09:21:43.879Z cypress:server:server resolving visit { url: 'http://192.168.4.28/', headers: { host: '192.168.4.28', connection: 'Upgrade', pragma: 'no-cache', 'cache-control': 'no-cache', upgrade: 'websocket', origin: 'http://192.168.4.28', 'sec-websocket-version': '13', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', 'sec-websocket-key': 'S8rMNKtCUd+RNMNX/4A8gg==', 'sec-websocket-extensions': 'permessage-deflate; client_max_window_bits' }, options: { auth: null, failOnStatusCode: true, retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, method: 'GET', body: null, headers: {}, timeout: 30000 } }
2019-05-28T09:21:43.882Z cypress:server:server Getting remote state: { auth: undefined, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: undefined, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:43.884Z cypress:server:server sending request with options { auth: null, failOnStatusCode: true, retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, method: 'GET', body: null, headers: { accept: 'text/html,*/*' }, timeout: 30000, gzip: false, url: 'http://192.168.4.28/', onBeforeReqInit: [Function: runPhase], followRedirect: [Function: followRedirect] }
2019-05-28T09:21:43.907Z cypress:server:cookies getting:cookies { url: 'http://192.168.4.28/' }
2019-05-28T09:21:44.010Z cypress:server:cookies received get:cookies []
2019-05-28T09:21:44.015Z cypress:server:request sending request as stream { auth: null, failOnStatusCode: true, retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, method: 'GET', body: null, headers: { accept: 'text/html,*/*', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36' }, timeout: 30000, gzip: false, url: 'http://192.168.4.28/', onBeforeReqInit: [Function: runPhase] }
2019-05-28T09:21:44.945Z cypress:network:agent addRequest called for http://192.168.4.28/
2019-05-28T09:21:44.967Z cypress:server:timers queuing timer id 21 after 30000 ms
2019-05-28T09:21:44.967Z cypress:server:timers child received timer id 21
2019-05-28T09:21:45.060Z cypress:server:timers clearing timer id 21 from queue { '20': { args: [], ms: 85000, cb: [Function] }, '21': { args: [], ms: 30000, cb: [Function] } }
2019-05-28T09:21:45.181Z cypress:server:request received status code on request { requestId: 'request1', statusCode: 200 }
2019-05-28T09:21:45.182Z cypress:server:request successful response received { requestId: 'request1' }
2019-05-28T09:21:45.195Z cypress:server:server resolve:url headers received, buffering response { headers: { date: 'Tue, 28 May 2019 09:21:45 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'set-cookie': [ 'PHPSESSID=rf6qn0g47trf18jf81a24sac53; path=/' ], expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', vary: 'Accept-Encoding', 'content-length': '2570', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/html; charset=UTF-8' }, statusCode: 200 }
2019-05-28T09:21:45.207Z cypress:server:request setting request jar cookies [ { key: 'PHPSESSID', value: 'rf6qn0g47trf18jf81a24sac53', domain: '192.168.4.28', path: '/', hostOnly: true, creation: '2019-05-28T09:21:45.176Z', lastAccessed: '2019-05-28T09:21:45.176Z', url: 'http://192.168.4.28/' } ]
2019-05-28T09:21:45.224Z cypress:server:cookies set:cookie { name: 'PHPSESSID', value: 'rf6qn0g47trf18jf81a24sac53', path: '/', url: 'http://192.168.4.28/' }
2019-05-28T09:21:45.238Z cypress:server:cookies received set:cookie { name: 'PHPSESSID', value: 'rf6qn0g47trf18jf81a24sac53', path: '/' }
2019-05-28T09:21:45.254Z cypress:server:server setting details resolving url { isOkStatusCode: true, isHtml: true, contentType: 'text/html', url: 'http://192.168.4.28/', status: 200, cookies: [ { key: 'PHPSESSID', value: 'rf6qn0g47trf18jf81a24sac53', domain: '192.168.4.28', path: '/', hostOnly: true, creation: '2019-05-28T09:21:45.176Z', lastAccessed: '2019-05-28T09:21:45.176Z', url: 'http://192.168.4.28/', name: 'PHPSESSID' } ], statusText: 'OK', redirects: [], originalUrl: 'http://192.168.4.28/' }
2019-05-28T09:21:45.270Z cypress:server:server resolve:url response ended, setting buffer { newUrl: 'http://192.168.4.28/', details: { isOkStatusCode: true, isHtml: true, contentType: 'text/html', url: 'http://192.168.4.28/', status: 200, cookies: [ [Object] ], statusText: 'OK', redirects: [], originalUrl: 'http://192.168.4.28/' } }
2019-05-28T09:21:45.271Z cypress:server:server Setting remoteAuth null
2019-05-28T09:21:45.271Z cypress:server:cors Parsed URL { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:45.278Z cypress:server:server Setting remoteOrigin http://192.168.4.28
2019-05-28T09:21:45.279Z cypress:server:server Setting remoteHostAndPort { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:45.279Z cypress:server:server Setting remoteDocDomain 192.168.4.28
2019-05-28T09:21:45.280Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:45.602Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:45.603Z cypress:server:proxy handling proxied request { url: '/', proxiedUrl: 'http://192.168.4.28/', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'upgrade-insecure-requests': '1', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8', referer: 'http://192.168.4.28/__/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53; __cypress.initial=true' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:45.611Z cypress:server:buffers found request buffer { buffer: { url: 'http://192.168.4.28/', originalUrl: 'http://192.168.4.28/' }, bufferCount: 0 }
2019-05-28T09:21:45.616Z cypress:server:proxy received response for { url: 'http://192.168.4.28/', headers: { date: 'Tue, 28 May 2019 09:21:45 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'set-cookie': [ 'PHPSESSID=rf6qn0g47trf18jf81a24sac53; path=/' ], expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', vary: 'Accept-Encoding', 'content-length': '2570', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/html; charset=UTF-8' }, statusCode: 200, isGzipped: undefined, wantsInjection: 'full', wantsSecurityRemoved: true }
2019-05-28T09:21:46.613Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:46.642Z cypress:server:proxy handling proxied request { url: '/css/tui/tui-time-picker', proxiedUrl: 'http://192.168.4.28/css/tui/tui-time-picker', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:46.761Z cypress:network:agent addRequest called for http://192.168.4.28/css/tui/tui-time-picker
2019-05-28T09:21:46.774Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:46.905Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:46.906Z cypress:server:proxy handling proxied request { url: '/css/tui/tui-date-picker', proxiedUrl: 'http://192.168.4.28/css/tui/tui-date-picker', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:46.918Z cypress:network:agent addRequest called for http://192.168.4.28/css/tui/tui-date-picker
2019-05-28T09:21:46.919Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:46.930Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:46.930Z cypress:server:proxy handling proxied request { url: '/css/tui/tui-calendar.css', proxiedUrl: 'http://192.168.4.28/css/tui/tui-calendar.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:46.933Z cypress:network:agent addRequest called for http://192.168.4.28/css/tui/tui-calendar.css
2019-05-28T09:21:46.934Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:46.939Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:46.942Z cypress:server:proxy handling proxied request { url: '/css/jsoneditor.min.css', proxiedUrl: 'http://192.168.4.28/css/jsoneditor.min.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:46.947Z cypress:network:agent addRequest called for http://192.168.4.28/css/jsoneditor.min.css
2019-05-28T09:21:46.950Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:46.963Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:46.964Z cypress:server:proxy handling proxied request { url: '/css/cropper.min.css', proxiedUrl: 'http://192.168.4.28/css/cropper.min.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:46.970Z cypress:network:agent addRequest called for http://192.168.4.28/css/cropper.min.css
2019-05-28T09:21:46.971Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:46.975Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:46.977Z cypress:server:proxy handling proxied request { url: '/css/colorpicker.min.css', proxiedUrl: 'http://192.168.4.28/css/colorpicker.min.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:46.983Z cypress:network:agent addRequest called for http://192.168.4.28/css/colorpicker.min.css
2019-05-28T09:21:46.999Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:47.089Z cypress:server:request received status code on request { requestId: 'request2', statusCode: 404 }
2019-05-28T09:21:47.098Z cypress:server:request successful response received { requestId: 'request2' }
2019-05-28T09:21:47.099Z cypress:server:cors Parsed URL { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:47.111Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/tui/tui-time-picker', headers: { date: 'Tue, 28 May 2019 09:21:46 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-length': '2744', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'text/html; charset=UTF-8' }, statusCode: 404, isGzipped: undefined, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:47.146Z cypress:server:request received status code on request { requestId: 'request4', statusCode: 200 }
2019-05-28T09:21:47.146Z cypress:server:request successful response received { requestId: 'request4' }
2019-05-28T09:21:47.147Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/tui/tui-calendar.css', headers: { date: 'Tue, 28 May 2019 09:21:47 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"8db2-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '8262', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:47.176Z cypress:server:request received status code on request { requestId: 'request5', statusCode: 200 }
2019-05-28T09:21:47.178Z cypress:server:request successful response received { requestId: 'request5' }
2019-05-28T09:21:47.178Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/jsoneditor.min.css', headers: { date: 'Tue, 28 May 2019 09:21:47 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"8322-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '6024', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.012Z cypress:server:request aborting { requestId: 'request2' }
2019-05-28T09:21:48.069Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.138Z cypress:server:proxy handling proxied request { url: '/css/angular-gantt/angular-gantt.css', proxiedUrl: 'http://192.168.4.28/css/angular-gantt/angular-gantt.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.195Z cypress:network:agent addRequest called for http://192.168.4.28/css/angular-gantt/angular-gantt.css
2019-05-28T09:21:48.201Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.207Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.223Z cypress:server:proxy handling proxied request { url: '/css/angular-gantt/angular-gantt-plugins.css', proxiedUrl: 'http://192.168.4.28/css/angular-gantt/angular-gantt-plugins.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.234Z cypress:network:agent addRequest called for http://192.168.4.28/css/angular-gantt/angular-gantt-plugins.css
2019-05-28T09:21:48.235Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.240Z cypress:server:request received status code on request { requestId: 'request3', statusCode: 404 }
2019-05-28T09:21:48.240Z cypress:server:request successful response received { requestId: 'request3' }
2019-05-28T09:21:48.245Z cypress:server:cors Parsed URL { port: '80', tld: '192.168.4.28', domain: '' }
2019-05-28T09:21:48.247Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/tui/tui-date-picker', headers: { date: 'Tue, 28 May 2019 09:21:47 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-length': '2744', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/html; charset=UTF-8' }, statusCode: 404, isGzipped: undefined, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.264Z cypress:server:request received an error making http request { timeout: null, retryIntervals: [ 0, 100, 200, 200 ], url: 'http://192.168.4.28/css/angular-gantt/angular-gantt.css', requestId: 'request8', retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, delaysRemaining: [ 0, 100, 200, 200 ], err: { Error: socket hang up at createHangUpError (_http_client.js:331:15) at Socket.socketCloseListener (_http_client.js:363:23) at emitOne (events.js:121:20) at Socket.emit (events.js:211:7) at TCP._handle.close [as _onclose] (net.js:554:12) code: 'ECONNRESET' } }
2019-05-28T09:21:48.266Z cypress:server:request retrying request { timeout: null, retryIntervals: [ 0, 100, 200, 200 ], url: 'http://192.168.4.28/css/angular-gantt/angular-gantt.css', requestId: 'request8', retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, delaysRemaining: [ 100, 200, 200 ], delay: 0, attempt: 1 }
2019-05-28T09:21:48.267Z cypress:server:timers queuing timer id 22 after 0 ms
2019-05-28T09:21:48.273Z cypress:server:timers child received timer id 22
2019-05-28T09:21:48.274Z cypress:server:timers child sending timer id 22
2019-05-28T09:21:48.416Z cypress:server:request received status code on request { requestId: 'request6', statusCode: 200 }
2019-05-28T09:21:48.426Z cypress:server:request successful response received { requestId: 'request6' }
2019-05-28T09:21:48.427Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/cropper.min.css', headers: { date: 'Tue, 28 May 2019 09:21:47 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"ef2-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1298', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.442Z cypress:server:request received status code on request { requestId: 'request7', statusCode: 200 }
2019-05-28T09:21:48.450Z cypress:server:request successful response received { requestId: 'request7' }
2019-05-28T09:21:48.451Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/colorpicker.min.css', headers: { date: 'Tue, 28 May 2019 09:21:47 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"40c5-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '10607', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.472Z cypress:server:request received status code on request { requestId: 'request9', statusCode: 200 }
2019-05-28T09:21:48.479Z cypress:server:request successful response received { requestId: 'request9' }
2019-05-28T09:21:48.480Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/angular-gantt/angular-gantt-plugins.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"1437-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1175', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.499Z cypress:server:timers clearing timer id 22 from queue { '20': { args: [], ms: 85000, cb: [Function] }, '22': { args: [], ms: 0, cb: [Function: tryStartStream] } }
2019-05-28T09:21:48.512Z cypress:server:stream_buffer buffered stream EOF { readerId: 'reader10' }
2019-05-28T09:21:48.513Z cypress:network:agent addRequest called for http://192.168.4.28/css/angular-gantt/angular-gantt.css
2019-05-28T09:21:48.515Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.528Z cypress:server:proxy handling proxied request { url: '/css/angular-gantt/angular-ui-tree.min.css', proxiedUrl: 'http://192.168.4.28/css/angular-gantt/angular-ui-tree.min.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.537Z cypress:network:agent addRequest called for http://192.168.4.28/css/angular-gantt/angular-ui-tree.min.css
2019-05-28T09:21:48.537Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.543Z cypress:server:request aborting { requestId: 'request3' }
2019-05-28T09:21:48.556Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.556Z cypress:server:proxy handling proxied request { url: '/clbfunction/css/bootstrap-datetimepicker.css', proxiedUrl: 'http://192.168.4.28/clbfunction/css/bootstrap-datetimepicker.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.559Z cypress:network:agent addRequest called for http://192.168.4.28/clbfunction/css/bootstrap-datetimepicker.css
2019-05-28T09:21:48.569Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.572Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.582Z cypress:server:proxy handling proxied request { url: '/clbfunction/css/cgBusy.css', proxiedUrl: 'http://192.168.4.28/clbfunction/css/cgBusy.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.596Z cypress:network:agent addRequest called for http://192.168.4.28/clbfunction/css/cgBusy.css
2019-05-28T09:21:48.596Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.606Z cypress:server:request received status code on request { requestId: 'request8', statusCode: 200 }
2019-05-28T09:21:48.606Z cypress:server:request successful response received { requestId: 'request8' }
2019-05-28T09:21:48.607Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/angular-gantt/angular-gantt.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"169f-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1194', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.663Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.664Z cypress:server:proxy handling proxied request { url: '/css/ui-grid.css', proxiedUrl: 'http://192.168.4.28/css/ui-grid.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.694Z cypress:network:agent addRequest called for http://192.168.4.28/css/ui-grid.css
2019-05-28T09:21:48.697Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.699Z cypress:server:request received an error making http request { timeout: null, retryIntervals: [ 0, 100, 200, 200 ], url: 'http://192.168.4.28/css/angular-gantt/angular-ui-tree.min.css', requestId: 'request11', retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, delaysRemaining: [ 0, 100, 200, 200 ], err: { Error: socket hang up at createHangUpError (_http_client.js:331:15) at Socket.socketCloseListener (_http_client.js:363:23) at emitOne (events.js:121:20) at Socket.emit (events.js:211:7) at TCP._handle.close [as _onclose] (net.js:554:12) code: 'ECONNRESET' } }
2019-05-28T09:21:48.702Z cypress:server:request retrying request { timeout: null, retryIntervals: [ 0, 100, 200, 200 ], url: 'http://192.168.4.28/css/angular-gantt/angular-ui-tree.min.css', requestId: 'request11', retryOnNetworkFailure: true, retryOnStatusCodeFailure: false, delaysRemaining: [ 100, 200, 200 ], delay: 0, attempt: 1 }
2019-05-28T09:21:48.713Z cypress:server:timers queuing timer id 23 after 0 ms
2019-05-28T09:21:48.714Z cypress:server:timers child received timer id 23
2019-05-28T09:21:48.717Z cypress:server:timers child sending timer id 23
2019-05-28T09:21:48.870Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.878Z cypress:server:proxy handling proxied request { url: '/css/bootstrap.css', proxiedUrl: 'http://192.168.4.28/css/bootstrap.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.895Z cypress:network:agent addRequest called for http://192.168.4.28/css/bootstrap.css
2019-05-28T09:21:48.898Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.899Z cypress:server:request received status code on request { requestId: 'request14', statusCode: 200 }
2019-05-28T09:21:48.910Z cypress:server:request successful response received { requestId: 'request14' }
2019-05-28T09:21:48.910Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/ui-grid.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"83c7-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '4524', 'keep-alive': 'timeout=5, max=98', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.923Z cypress:server:timers clearing timer id 23 from queue { '20': { args: [], ms: 85000, cb: [Function] }, '23': { args: [], ms: 0, cb: [Function: tryStartStream] } }
2019-05-28T09:21:48.924Z cypress:server:stream_buffer buffered stream EOF { readerId: 'reader16' }
2019-05-28T09:21:48.926Z cypress:network:agent addRequest called for http://192.168.4.28/css/angular-gantt/angular-ui-tree.min.css
2019-05-28T09:21:48.935Z cypress:server:request received status code on request { requestId: 'request12', statusCode: 200 }
2019-05-28T09:21:48.935Z cypress:server:request successful response received { requestId: 'request12' }
2019-05-28T09:21:48.941Z cypress:server:proxy received response for { url: 'http://192.168.4.28/clbfunction/css/bootstrap-datetimepicker.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1387', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'text/css;charset=UTF-8' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:48.965Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:48.966Z cypress:server:proxy handling proxied request { url: '/clbfunction/css/all.min.css', proxiedUrl: 'http://192.168.4.28/clbfunction/css/all.min.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:48.968Z cypress:network:agent addRequest called for http://192.168.4.28/clbfunction/css/all.min.css
2019-05-28T09:21:48.976Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:48.998Z cypress:server:request received status code on request { requestId: 'request11', statusCode: 200 }
2019-05-28T09:21:48.999Z cypress:server:request successful response received { requestId: 'request11' }
2019-05-28T09:21:49.002Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/angular-gantt/angular-ui-tree.min.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"54b-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '411', 'keep-alive': 'timeout=5, max=97', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:49.023Z cypress:server:request received status code on request { requestId: 'request15', statusCode: 200 }
2019-05-28T09:21:49.023Z cypress:server:request successful response received { requestId: 'request15' }
2019-05-28T09:21:49.024Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/bootstrap.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:17 GMT', etag: '"23718-582b138c7e540-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '21338', 'keep-alive': 'timeout=5, max=98', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:49.056Z cypress:server:request received status code on request { requestId: 'request13', statusCode: 200 }
2019-05-28T09:21:49.057Z cypress:server:request successful response received { requestId: 'request13' }
2019-05-28T09:21:49.058Z cypress:server:proxy received response for { url: 'http://192.168.4.28/clbfunction/css/cgBusy.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1286', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'text/css;charset=UTF-8' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:49.068Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:49.093Z cypress:server:proxy handling proxied request { url: '/css/style.css', proxiedUrl: 'http://192.168.4.28/css/style.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:49.095Z cypress:network:agent addRequest called for http://192.168.4.28/css/style.css
2019-05-28T09:21:49.110Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:49.111Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:49.132Z cypress:server:proxy handling proxied request { url: '/clbdashboard/css/angular-dashboard-framework.min.css', proxiedUrl: 'http://192.168.4.28/clbdashboard/css/angular-dashboard-framework.min.css', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: 'text/css,*/*;q=0.1', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:49.136Z cypress:network:agent addRequest called for http://192.168.4.28/clbdashboard/css/angular-dashboard-framework.min.css
2019-05-28T09:21:49.142Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:49.271Z cypress:server:request received status code on request { requestId: 'request18', statusCode: 200 }
2019-05-28T09:21:49.279Z cypress:server:request successful response received { requestId: 'request18' }
2019-05-28T09:21:49.280Z cypress:server:proxy received response for { url: 'http://192.168.4.28/css/style.css', headers: { date: 'Tue, 28 May 2019 09:21:49 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Wed, 13 Mar 2019 14:21:09 GMT', etag: '"6b76-583fa845c1fd1-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '6070', 'keep-alive': 'timeout=5, max=96', connection: 'Keep-Alive', 'content-type': 'text/css' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:49.311Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:49.318Z cypress:server:proxy handling proxied request { url: '/clbdashboard/js/sortable.js', proxiedUrl: 'http://192.168.4.28/clbdashboard/js/sortable.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:49.321Z cypress:network:agent addRequest called for http://192.168.4.28/clbdashboard/js/sortable.js
2019-05-28T09:21:49.340Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:49.356Z cypress:server:request received status code on request { requestId: 'request17', statusCode: 200 }
2019-05-28T09:21:49.358Z cypress:server:request successful response received { requestId: 'request17' }
2019-05-28T09:21:49.359Z cypress:server:proxy received response for { url: 'http://192.168.4.28/clbfunction/css/all.min.css', headers: { date: 'Tue, 28 May 2019 09:21:48 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '11814', 'keep-alive': 'timeout=5, max=98', connection: 'Keep-Alive', 'content-type': 'text/css;charset=UTF-8' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:49.394Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:49.397Z cypress:server:proxy handling proxied request { url: '/js/zeroclipboard/ZeroClipboard.min.js', proxiedUrl: 'http://192.168.4.28/js/zeroclipboard/ZeroClipboard.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:49.399Z cypress:network:agent addRequest called for http://192.168.4.28/js/zeroclipboard/ZeroClipboard.min.js
2019-05-28T09:21:49.422Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:49.423Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:49.424Z cypress:server:proxy handling proxied request { url: '/js/require.js', proxiedUrl: 'http://192.168.4.28/js/require.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:49.433Z cypress:network:agent addRequest called for http://192.168.4.28/js/require.js
2019-05-28T09:21:49.435Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:49.445Z cypress:server:request received status code on request { requestId: 'request21', statusCode: 200 }
2019-05-28T09:21:49.446Z cypress:server:request successful response received { requestId: 'request21' }
2019-05-28T09:21:49.447Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/zeroclipboard/ZeroClipboard.min.js', headers: { date: 'Tue, 28 May 2019 09:21:49 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:02 GMT', etag: '"74d7-582b137e30380-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '9563', 'keep-alive': 'timeout=5, max=95', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:50.311Z cypress:server:request received status code on request { requestId: 'request22', statusCode: 200 }
2019-05-28T09:21:50.337Z cypress:server:request successful response received { requestId: 'request22' }
2019-05-28T09:21:50.338Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/require.js', headers: { date: 'Tue, 28 May 2019 09:21:49 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:15 GMT', etag: '"14641-582b138a960c0-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '20571', 'keep-alive': 'timeout=5, max=97', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:50.397Z cypress:server:request received status code on request { requestId: 'request19', statusCode: 200 }
2019-05-28T09:21:50.421Z cypress:server:request successful response received { requestId: 'request19' }
2019-05-28T09:21:50.422Z cypress:server:proxy received response for { url: 'http://192.168.4.28/clbdashboard/css/angular-dashboard-framework.min.css', headers: { date: 'Tue, 28 May 2019 09:21:49 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '357', 'keep-alive': 'timeout=5, max=97', connection: 'Keep-Alive', 'content-type': 'text/css;charset=UTF-8' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: false }
2019-05-28T09:21:50.622Z cypress:server:request received status code on request { requestId: 'request20', statusCode: 200 }
2019-05-28T09:21:50.627Z cypress:server:request successful response received { requestId: 'request20' }
2019-05-28T09:21:50.628Z cypress:server:proxy received response for { url: 'http://192.168.4.28/clbdashboard/js/sortable.js', headers: { date: 'Tue, 28 May 2019 09:21:49 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '6944', 'keep-alive': 'timeout=5, max=98', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:52.727Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:52.766Z cypress:server:proxy handling proxied request { url: '/application/js/main.js', proxiedUrl: 'http://192.168.4.28/application/js/main.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:52.816Z cypress:network:agent addRequest called for http://192.168.4.28/application/js/main.js
2019-05-28T09:21:52.861Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:54.125Z cypress:server:request received status code on request { requestId: 'request23', statusCode: 200 }
2019-05-28T09:21:54.137Z cypress:server:request successful response received { requestId: 'request23' }
2019-05-28T09:21:54.138Z cypress:server:proxy received response for { url: 'http://192.168.4.28/application/js/main.js', headers: { date: 'Tue, 28 May 2019 09:21:52 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '4445', 'keep-alive': 'timeout=5, max=94', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:54.940Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:54.950Z cypress:server:proxy handling proxied request { url: '/application/js/cycle.js', proxiedUrl: 'http://192.168.4.28/application/js/cycle.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:54.991Z cypress:network:agent addRequest called for http://192.168.4.28/application/js/cycle.js
2019-05-28T09:21:54.994Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:56.223Z cypress:server:request received status code on request { requestId: 'request24', statusCode: 200 }
2019-05-28T09:21:56.269Z cypress:server:request successful response received { requestId: 'request24' }
2019-05-28T09:21:56.274Z cypress:server:proxy received response for { url: 'http://192.168.4.28/application/js/cycle.js', headers: { date: 'Tue, 28 May 2019 09:21:54 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '2279', 'keep-alive': 'timeout=5, max=93', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:57.025Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:57.047Z cypress:server:proxy handling proxied request { url: '/js/module/clbModule45.js', proxiedUrl: 'http://192.168.4.28/js/module/clbModule45.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:57.052Z cypress:network:agent addRequest called for http://192.168.4.28/js/module/clbModule45.js
2019-05-28T09:21:57.076Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:57.102Z cypress:server:request received status code on request { requestId: 'request25', statusCode: 200 }
2019-05-28T09:21:57.105Z cypress:server:request successful response received { requestId: 'request25' }
2019-05-28T09:21:57.114Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/module/clbModule45.js', headers: { date: 'Tue, 28 May 2019 09:21:57 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Fri, 26 Apr 2019 07:19:49 GMT', etag: '"5b8c-58769c2909a34-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '5124', 'keep-alive': 'timeout=5, max=92', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:57.131Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:57.141Z cypress:server:proxy handling proxied request { url: '/js/module/clbLanguage45.js', proxiedUrl: 'http://192.168.4.28/js/module/clbLanguage45.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:57.159Z cypress:network:agent addRequest called for http://192.168.4.28/js/module/clbLanguage45.js
2019-05-28T09:21:57.160Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:57.176Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:57.177Z cypress:server:proxy handling proxied request { url: '/js/module/clbUser45.js', proxiedUrl: 'http://192.168.4.28/js/module/clbUser45.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:57.180Z cypress:network:agent addRequest called for http://192.168.4.28/js/module/clbUser45.js
2019-05-28T09:21:57.194Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:57.196Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:57.217Z cypress:server:proxy handling proxied request { url: '/js/module/clbFunction45.js', proxiedUrl: 'http://192.168.4.28/js/module/clbFunction45.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:57.251Z cypress:network:agent addRequest called for http://192.168.4.28/js/module/clbFunction45.js
2019-05-28T09:21:57.258Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:57.271Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:57.274Z cypress:server:proxy handling proxied request { url: '/js/jquery.min.js', proxiedUrl: 'http://192.168.4.28/js/jquery.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:57.298Z cypress:network:agent addRequest called for http://192.168.4.28/js/jquery.min.js
2019-05-28T09:21:57.299Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:57.313Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:21:57.314Z cypress:server:proxy handling proxied request { url: '/clbfunction/js/moment-with-locales.js', proxiedUrl: 'http://192.168.4.28/clbfunction/js/moment-with-locales.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:21:57.316Z cypress:network:agent addRequest called for http://192.168.4.28/clbfunction/js/moment-with-locales.js
2019-05-28T09:21:57.334Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:21:57.338Z cypress:server:request received status code on request { requestId: 'request26', statusCode: 200 }
2019-05-28T09:21:57.346Z cypress:server:request successful response received { requestId: 'request26' }
2019-05-28T09:21:57.350Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/module/clbLanguage45.js', headers: { date: 'Tue, 28 May 2019 09:21:57 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Fri, 26 Apr 2019 07:19:48 GMT', etag: '"1953-58769c28aed0c-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1240', 'keep-alive': 'timeout=5, max=91', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:57.583Z cypress:server:request received status code on request { requestId: 'request27', statusCode: 200 }
2019-05-28T09:21:57.591Z cypress:server:request successful response received { requestId: 'request27' }
2019-05-28T09:21:57.617Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/module/clbUser45.js', headers: { date: 'Tue, 28 May 2019 09:21:57 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Fri, 26 Apr 2019 07:19:49 GMT', etag: '"10a64-58769c2958bdc-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '10757', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:57.642Z cypress:server:request received status code on request { requestId: 'request28', statusCode: 200 }
2019-05-28T09:21:57.643Z cypress:server:request successful response received { requestId: 'request28' }
2019-05-28T09:21:57.660Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/module/clbFunction45.js', headers: { date: 'Tue, 28 May 2019 09:21:57 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Fri, 26 Apr 2019 07:19:48 GMT', etag: '"4775d-58769c289b48a-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '53286', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:57.730Z cypress:server:request received status code on request { requestId: 'request29', statusCode: 200 }
2019-05-28T09:21:57.737Z cypress:server:request successful response received { requestId: 'request29' }
2019-05-28T09:21:57.738Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/jquery.min.js', headers: { date: 'Tue, 28 May 2019 09:21:57 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:02 GMT', etag: '"16bb3-582b137e30380-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '32802', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:57.915Z cypress:server:request received status code on request { requestId: 'request30', statusCode: 200 }
2019-05-28T09:21:57.916Z cypress:server:request successful response received { requestId: 'request30' }
2019-05-28T09:21:57.933Z cypress:server:proxy received response for { url: 'http://192.168.4.28/clbfunction/js/moment-with-locales.js', headers: { date: 'Tue, 28 May 2019 09:21:57 GMT', server: 'Apache/2.4.18 (Ubuntu)', expires: 'Thu, 19 Nov 1981 08:52:00 GMT', 'cache-control': 'no-store, no-cache, must-revalidate', pragma: 'no-cache', 'content-transfer-encoding': 'binary', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'transfer-encoding': 'chunked', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:21:58.398Z cypress:server:video capture stderr log { message: 'Input #0, image2pipe, from \'pipe:0\':' }
2019-05-28T09:21:58.409Z cypress:server:video capture stderr log { message: '  Duration: N/A, start: 1559035279.000000, bitrate: N/A' }
2019-05-28T09:21:58.410Z cypress:server:video capture stderr log { message: '    Stream #0:0: Video: mjpeg (Baseline), yuvj420p(pc, bt470bg/unknown/unknown), 1280x720 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 25 tbn, 25 tbc' }
2019-05-28T09:21:58.410Z cypress:server:video capture stderr log { message: 'Stream mapping:' }
2019-05-28T09:21:58.411Z cypress:server:video capture codec data: { format: 'image2pipe', audio: '', video: 'mjpeg (Baseline)', duration: 'N/A', video_details: [ 'mjpeg (Baseline)', 'yuvj420p(pc', 'bt470bg/unknown/unknown)', '1280x720 [SAR 1:1 DAR 16:9]', '25 fps', '25 tbr', '25 tbn', '25 tbc' ] }
2019-05-28T09:21:58.413Z cypress:server:video capture stderr log { message: '  Stream #0:0 -> #0:0 (mjpeg (native) -> h264 (libx264))' }
2019-05-28T09:22:00.334Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:00.346Z cypress:server:proxy handling proxied request { url: '/js/bootstrap.min.js', proxiedUrl: 'http://192.168.4.28/js/bootstrap.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:00.347Z cypress:network:agent addRequest called for http://192.168.4.28/js/bootstrap.min.js
2019-05-28T09:22:00.364Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:00.370Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:00.386Z cypress:server:proxy handling proxied request { url: '/js/angular-1.5.0/angular.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-1.5.0/angular.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:00.387Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-1.5.0/angular.min.js
2019-05-28T09:22:00.391Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:00.586Z cypress:server:request received status code on request { requestId: 'request31', statusCode: 200 }
2019-05-28T09:22:00.589Z cypress:server:request successful response received { requestId: 'request31' }
2019-05-28T09:22:00.591Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/bootstrap.min.js', headers: { date: 'Tue, 28 May 2019 09:22:00 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:00 GMT', etag: '"6c8e-582b137c47f00-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '7281', 'keep-alive': 'timeout=5, max=90', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:00.654Z cypress:server:request received status code on request { requestId: 'request32', statusCode: 200 }
2019-05-28T09:22:00.657Z cypress:server:request successful response received { requestId: 'request32' }
2019-05-28T09:22:00.658Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-1.5.0/angular.min.js', headers: { date: 'Tue, 28 May 2019 09:22:00 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:28:33 GMT', etag: '"27ae8-582b136288240-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '57127', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:02.713Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] using SAR=1/1' }
2019-05-28T09:22:03.059Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:03.070Z cypress:server:proxy handling proxied request { url: '/js/angularAMD.min.js', proxiedUrl: 'http://192.168.4.28/js/angularAMD.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:03.071Z cypress:network:agent addRequest called for http://192.168.4.28/js/angularAMD.min.js
2019-05-28T09:22:03.081Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:03.090Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:03.101Z cypress:server:proxy handling proxied request { url: '/js/angular-1.4.0/angular-route.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-1.4.0/angular-route.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:03.103Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-1.4.0/angular-route.min.js
2019-05-28T09:22:03.112Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:03.129Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:03.130Z cypress:server:proxy handling proxied request { url: '/js/angular-1.5.0/angular-messages.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-1.5.0/angular-messages.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:03.132Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-1.5.0/angular-messages.min.js
2019-05-28T09:22:03.134Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:03.139Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:03.158Z cypress:server:proxy handling proxied request { url: '/js/angular-sanitize.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-sanitize.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:03.160Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-sanitize.min.js
2019-05-28T09:22:03.160Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:03.169Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:03.178Z cypress:server:proxy handling proxied request { url: '/js/angular-1.5.0/angular-cookies.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-1.5.0/angular-cookies.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:03.191Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-1.5.0/angular-cookies.min.js
2019-05-28T09:22:03.194Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:03.211Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:03.233Z cypress:server:proxy handling proxied request { url: '/js/angular-1.5.0/angular-aria.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-1.5.0/angular-aria.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:03.235Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-1.5.0/angular-aria.min.js
2019-05-28T09:22:03.238Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:03.261Z cypress:server:request received status code on request { requestId: 'request33', statusCode: 200 }
2019-05-28T09:22:03.262Z cypress:server:request successful response received { requestId: 'request33' }
2019-05-28T09:22:03.263Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angularAMD.min.js', headers: { date: 'Tue, 28 May 2019 09:22:03 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:01 GMT', etag: '"f86-582b137d3c140-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1612', 'keep-alive': 'timeout=5, max=89', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:03.268Z cypress:server:request received status code on request { requestId: 'request34', statusCode: 200 }
2019-05-28T09:22:03.289Z cypress:server:request successful response received { requestId: 'request34' }
2019-05-28T09:22:03.290Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-1.4.0/angular-route.min.js', headers: { date: 'Tue, 28 May 2019 09:22:03 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:03 GMT', etag: '"1138-582b137f245c0-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '2062', 'keep-alive': 'timeout=5, max=98', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:03.315Z cypress:server:request received status code on request { requestId: 'request35', statusCode: 200 }
2019-05-28T09:22:03.318Z cypress:server:request successful response received { requestId: 'request35' }
2019-05-28T09:22:03.319Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-1.5.0/angular-messages.min.js', headers: { date: 'Tue, 28 May 2019 09:22:03 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:28:33 GMT', etag: '"bc2-582b136288240-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1443', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:03.330Z cypress:server:request received status code on request { requestId: 'request36', statusCode: 200 }
2019-05-28T09:22:03.346Z cypress:server:request successful response received { requestId: 'request36' }
2019-05-28T09:22:03.347Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-sanitize.min.js', headers: { date: 'Tue, 28 May 2019 09:22:03 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:02 GMT', etag: '"17a2-582b137e30380-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '3139', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:03.356Z cypress:server:request received status code on request { requestId: 'request37', statusCode: 200 }
2019-05-28T09:22:03.365Z cypress:server:request successful response received { requestId: 'request37' }
2019-05-28T09:22:03.366Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-1.5.0/angular-cookies.min.js', headers: { date: 'Tue, 28 May 2019 09:22:03 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:28:50 GMT', etag: '"5a7-582b1372be880-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '799', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:03.559Z cypress:server:request received status code on request { requestId: 'request38', statusCode: 200 }
2019-05-28T09:22:03.560Z cypress:server:request successful response received { requestId: 'request38' }
2019-05-28T09:22:03.574Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-1.5.0/angular-aria.min.js', headers: { date: 'Tue, 28 May 2019 09:22:03 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:28:33 GMT', etag: '"f54-582b136288240-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1475', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:04.135Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:04.135Z cypress:server:proxy handling proxied request { url: '/js/angular-translate.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-translate.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:04.145Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-translate.min.js
2019-05-28T09:22:04.155Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:04.157Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:04.165Z cypress:server:proxy handling proxied request { url: '/js/ui-bootstrap-tpls-0.13.4.min.js', proxiedUrl: 'http://192.168.4.28/js/ui-bootstrap-tpls-0.13.4.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:04.167Z cypress:network:agent addRequest called for http://192.168.4.28/js/ui-bootstrap-tpls-0.13.4.min.js
2019-05-28T09:22:04.177Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:04.192Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:04.198Z cypress:server:proxy handling proxied request { url: '/js/angular-1.5.0/angular-resource.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-1.5.0/angular-resource.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:04.200Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-1.5.0/angular-resource.min.js
2019-05-28T09:22:04.214Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:04.224Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:04.232Z cypress:server:proxy handling proxied request { url: '/js/ngDraggable.js', proxiedUrl: 'http://192.168.4.28/js/ngDraggable.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:04.262Z cypress:network:agent addRequest called for http://192.168.4.28/js/ngDraggable.js
2019-05-28T09:22:04.263Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:04.268Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:04.290Z cypress:server:proxy handling proxied request { url: '/js/angular-daynamic-locale-0.1.30.js', proxiedUrl: 'http://192.168.4.28/js/angular-daynamic-locale-0.1.30.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:04.313Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-daynamic-locale-0.1.30.js
2019-05-28T09:22:04.317Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:04.322Z cypress:server:request received status code on request { requestId: 'request39', statusCode: 200 }
2019-05-28T09:22:04.322Z cypress:server:request successful response received { requestId: 'request39' }
2019-05-28T09:22:04.337Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-translate.min.js', headers: { date: 'Tue, 28 May 2019 09:22:04 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:00 GMT', etag: '"386a-582b137c47f00-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '4793', 'keep-alive': 'timeout=5, max=88', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:04.346Z cypress:server:request received status code on request { requestId: 'request40', statusCode: 200 }
2019-05-28T09:22:04.346Z cypress:server:request successful response received { requestId: 'request40' }
2019-05-28T09:22:04.347Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/ui-bootstrap-tpls-0.13.4.min.js', headers: { date: 'Tue, 28 May 2019 09:22:04 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:02 GMT', etag: '"15e51-582b137e30380-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '23675', 'keep-alive': 'timeout=5, max=97', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:04.406Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:04.410Z cypress:server:proxy handling proxied request { url: '/js/angular-local-storage.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-local-storage.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:04.412Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-local-storage.min.js
2019-05-28T09:22:04.428Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:04.434Z cypress:server:request received status code on request { requestId: 'request41', statusCode: 200 }
2019-05-28T09:22:04.434Z cypress:server:request successful response received { requestId: 'request41' }
2019-05-28T09:22:04.435Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-1.5.0/angular-resource.min.js', headers: { date: 'Tue, 28 May 2019 09:22:04 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:28:33 GMT', etag: '"11a0-582b136288240-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '2208', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:04.447Z cypress:server:request received status code on request { requestId: 'request42', statusCode: 200 }
2019-05-28T09:22:04.450Z cypress:server:request successful response received { requestId: 'request42' }
2019-05-28T09:22:04.458Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/ngDraggable.js', headers: { date: 'Tue, 28 May 2019 09:22:04 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:01 GMT', etag: '"6f10-582b137d3c140-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '5001', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:04.478Z cypress:server:request received status code on request { requestId: 'request43', statusCode: 200 }
2019-05-28T09:22:04.478Z cypress:server:request successful response received { requestId: 'request43' }
2019-05-28T09:22:04.479Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-daynamic-locale-0.1.30.js', headers: { date: 'Tue, 28 May 2019 09:22:04 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:01 GMT', etag: '"1f4d-582b137d3c140-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '2273', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:04.683Z cypress:server:request received status code on request { requestId: 'request44', statusCode: 200 }
2019-05-28T09:22:04.700Z cypress:server:request successful response received { requestId: 'request44' }
2019-05-28T09:22:04.701Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-local-storage.min.js', headers: { date: 'Tue, 28 May 2019 09:22:04 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:02 GMT', etag: '"149f-582b137e30380-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '1874', 'keep-alive': 'timeout=5, max=99', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:05.117Z cypress:server:timers clearing timer id 20 from queue { '20': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:05.121Z cypress:server:timers queuing timer id 24 after 85000 ms
2019-05-28T09:22:05.122Z cypress:server:timers child received timer id 24
2019-05-28T09:22:05.123Z cypress:server:socket automation:request take:screenshot { titles: [ '16680 Mega Scenario for test', null ], testId: 'r3', simple: true, testFailure: true, capture: 'runner', clip: { x: 0, y: 0, width: 1000, height: 660 }, viewport: { width: 1280, height: 720 }, scaled: true, blackout: [], startTime: '2019-05-28T09:22:04.327Z' }
2019-05-28T09:22:05.124Z cypress:server:screenshot (s45) capturing screenshot { titles: [ '16680 Mega Scenario for test', null ], testId: 'r3', simple: true, testFailure: true, capture: 'runner', clip: { x: 0, y: 0, width: 1000, height: 660 }, viewport: { width: 1280, height: 720 }, scaled: true, blackout: [], startTime: '2019-05-28T09:22:04.327Z', specName: 'examples/ExecuteTestCase.js' }
2019-05-28T09:22:05.464Z cypress:server:server Getting remote state: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null }
2019-05-28T09:22:05.474Z cypress:server:proxy handling proxied request { url: '/js/angular-moment.min.js', proxiedUrl: 'http://192.168.4.28/js/angular-moment.min.js', headers: { host: '192.168.4.28', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.3.1 Chrome/61.0.3163.100 Electron/2.0.18 Safari/537.36', accept: '*/*', referer: 'http://192.168.4.28/', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', cookie: 'PHPSESSID=rf6qn0g47trf18jf81a24sac53' }, remoteState: { auth: null, props: { port: '80', tld: '192.168.4.28', domain: '' }, origin: 'http://192.168.4.28', strategy: 'http', visiting: false, domainName: '192.168.4.28', fileServer: null } }
2019-05-28T09:22:05.488Z cypress:network:agent addRequest called for http://192.168.4.28/js/angular-moment.min.js
2019-05-28T09:22:05.493Z cypress:server:stream_buffer stream buffer writeable final called
2019-05-28T09:22:06.039Z cypress:server:request received status code on request { requestId: 'request46', statusCode: 200 }
2019-05-28T09:22:06.040Z cypress:server:request successful response received { requestId: 'request46' }
2019-05-28T09:22:06.049Z cypress:server:proxy received response for { url: 'http://192.168.4.28/js/angular-moment.min.js', headers: { date: 'Tue, 28 May 2019 09:22:05 GMT', server: 'Apache/2.4.18 (Ubuntu)', 'last-modified': 'Mon, 25 Feb 2019 05:29:02 GMT', etag: '"4ae5-582b137e30380-gzip"', 'accept-ranges': 'bytes', vary: 'Accept-Encoding', 'content-encoding': 'gzip', 'content-length': '4181', 'keep-alive': 'timeout=5, max=87', connection: 'Keep-Alive', 'content-type': 'application/javascript' }, statusCode: 200, isGzipped: true, wantsInjection: false, wantsSecurityRemoved: true }
2019-05-28T09:22:06.052Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2' }
2019-05-28T09:22:06.065Z cypress:server:screenshot (s45) clearing 0 cached multipart images
2019-05-28T09:22:06.501Z cypress:server:timers clearing timer id 24 from queue { '24': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:06.512Z cypress:server:timers queuing timer id 25 after 85000 ms
2019-05-28T09:22:06.513Z cypress:server:timers child received timer id 25
2019-05-28T09:22:06.514Z cypress:server:project onMocha fail
2019-05-28T09:22:06.520Z cypress:server:reporter got mocha event 'fail' with args: [ { id: 'r3', err: { message: 'Cannot read property \'replace\' of null', name: 'TypeError', stack: 'TypeError: Cannot read property \'replace\' of null\n    at sanitize (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:41:6)\n    at module.exports (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:51:16)\n    at Array.map (<anonymous>:null:null)\n    at getPath (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:269:28)\n    at getPathToScreenshot (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:289:12)\n    at Object.save (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:384:14)\n    at /root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/automation/screenshot.js:15:30\n    at tryCatcher (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23)\n    at Promise._settlePromiseFromHandler (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:510:31)\n    at Promise._settlePromise (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:567:18)\n    at Promise._settlePromise0 (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:612:10)\n    at Promise._settlePromises (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:691:18)\n    at Async._drainQueue (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:133:16)\n    at Async._drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:143:10)\n    at Immediate.Async.drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:17:14)\n    at runCallback (timers.js:789:20)\n    at tryOnImmediate (timers.js:751:5)\n    at processImmediate [as _immediateCallback] (timers.js:722:5)\n' }, state: 'failed', body: 'function () {\n          var steps = testcaseconfig.steps;\n          console.log(steps[0]);\n\n          if (steps[0].stype == "newStep") {\n            cy.visit(\'\');\n            cy.wait(1000);\n          } else {\n            cy.logintlc();\n            cy.wait(1000);\n          }\n\n          var win;\n          cy.window().then(function (window) {\n            var combinedSteps = []; //console.log(testcaseconfig.tcid);\n            //console.log(testcaseconfig.steps);\n\n            var stepsArray = testcaseconfig.steps; //fnBuildSteps(testcaseconfig.steps, testcaseconfig.data, key, combinedSteps, testcaseconfig.data)\n\n            console.log(stepsArray);\n            cy.executeCustomElementSteps(stepsArray);\n          });\n        }', type: 'test', duration: 24335, wallClockStartedAt: '2019-05-28T09:21:42.028Z', timings: { lifecycle: 896, test: [Object] } } ]
2019-05-28T09:22:07.298Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] profile Constrained Baseline, level 3.1, 4:2:0, 8-bit' }
2019-05-28T09:22:07.328Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] 264 - core 157 r2935 545de2f - H.264/MPEG-4 AVC codec - Copyleft 2003-2018 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=0:0:0 analyse=0:0 me=dia subme=0 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=0 threads=1 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=250 keyint_min=25 scenecut=0 intra_refresh=0 rc=crf mbtree=0 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=0' }
2019-05-28T09:22:07.333Z cypress:server:video capture stderr log { message: 'Output #0, mp4, to \'/root/cypress/videos/examples/ExecuteTestCase.js.mp4\':' }
2019-05-28T09:22:07.334Z cypress:server:video capture stderr log { message: '  Metadata:' }
2019-05-28T09:22:07.334Z cypress:server:video capture stderr log { message: '    encoder         : Lavf58.24.100' }
2019-05-28T09:22:07.334Z cypress:server:video capture stderr log { message: '    Stream #0:0: Video: h264 (libx264) (avc1 / 0x31637661), yuvj420p(pc), 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 25 fps, 12800 tbn, 25 tbc' }
2019-05-28T09:22:07.347Z cypress:server:video capture stderr log { message: '    Metadata:' }
2019-05-28T09:22:07.347Z cypress:server:video capture stderr log { message: '      encoder         : Lavc58.42.100 libx264' }
2019-05-28T09:22:07.348Z cypress:server:video capture stderr log { message: '    Side data:' }
2019-05-28T09:22:07.349Z cypress:server:video capture stderr log { message: '      cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: -1' }
2019-05-28T09:22:07.485Z cypress:server:timers clearing timer id 25 from queue { '25': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:07.486Z cypress:server:timers queuing timer id 26 after 85000 ms
2019-05-28T09:22:07.487Z cypress:server:timers child received timer id 26
2019-05-28T09:22:07.490Z cypress:server:project onMocha test end
2019-05-28T09:22:07.490Z cypress:server:reporter got mocha event 'test end' with args: [ { id: 'r3', err: { message: 'Cannot read property \'replace\' of null', name: 'TypeError', stack: 'TypeError: Cannot read property \'replace\' of null\n    at sanitize (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:41:6)\n    at module.exports (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:51:16)\n    at Array.map (<anonymous>:null:null)\n    at getPath (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:269:28)\n    at getPathToScreenshot (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:289:12)\n    at Object.save (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:384:14)\n    at /root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/automation/screenshot.js:15:30\n    at tryCatcher (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23)\n    at Promise._settlePromiseFromHandler (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:510:31)\n    at Promise._settlePromise (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:567:18)\n    at Promise._settlePromise0 (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:612:10)\n    at Promise._settlePromises (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:691:18)\n    at Async._drainQueue (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:133:16)\n    at Async._drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:143:10)\n    at Immediate.Async.drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:17:14)\n    at runCallback (timers.js:789:20)\n    at tryOnImmediate (timers.js:751:5)\n    at processImmediate [as _immediateCallback] (timers.js:722:5)\n' }, state: 'failed', body: 'function () {\n          var steps = testcaseconfig.steps;\n          console.log(steps[0]);\n\n          if (steps[0].stype == "newStep") {\n            cy.visit(\'\');\n            cy.wait(1000);\n          } else {\n            cy.logintlc();\n            cy.wait(1000);\n          }\n\n          var win;\n          cy.window().then(function (window) {\n            var combinedSteps = []; //console.log(testcaseconfig.tcid);\n            //console.log(testcaseconfig.steps);\n\n            var stepsArray = testcaseconfig.steps; //fnBuildSteps(testcaseconfig.steps, testcaseconfig.data, key, combinedSteps, testcaseconfig.data)\n\n            console.log(stepsArray);\n            cy.executeCustomElementSteps(stepsArray);\n          });\n        }', type: 'test', duration: 24335, wallClockStartedAt: '2019-05-28T09:21:42.028Z', timings: { lifecycle: 896, test: [Object] } } ]
2019-05-28T09:22:07.574Z cypress:server:timers clearing timer id 26 from queue { '26': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:07.575Z cypress:server:timers queuing timer id 27 after 85000 ms
2019-05-28T09:22:07.577Z cypress:server:timers child received timer id 27
2019-05-28T09:22:07.578Z cypress:server:project onMocha test:after:run
2019-05-28T09:22:07.579Z cypress:server:reporter got mocha event 'test:after:run' with args: [ { id: 'r3', err: { message: 'Cannot read property \'replace\' of null', name: 'TypeError', stack: 'TypeError: Cannot read property \'replace\' of null\n    at sanitize (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:41:6)\n    at module.exports (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:51:16)\n    at Array.map (<anonymous>:null:null)\n    at getPath (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:269:28)\n    at getPathToScreenshot (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:289:12)\n    at Object.save (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:384:14)\n    at /root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/automation/screenshot.js:15:30\n    at tryCatcher (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23)\n    at Promise._settlePromiseFromHandler (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:510:31)\n    at Promise._settlePromise (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:567:18)\n    at Promise._settlePromise0 (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:612:10)\n    at Promise._settlePromises (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:691:18)\n    at Async._drainQueue (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:133:16)\n    at Async._drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:143:10)\n    at Immediate.Async.drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:17:14)\n    at runCallback (timers.js:789:20)\n    at tryOnImmediate (timers.js:751:5)\n    at processImmediate [as _immediateCallback] (timers.js:722:5)\n' }, state: 'failed', body: 'function () {\n          var steps = testcaseconfig.steps;\n          console.log(steps[0]);\n\n          if (steps[0].stype == "newStep") {\n            cy.visit(\'\');\n            cy.wait(1000);\n          } else {\n            cy.logintlc();\n            cy.wait(1000);\n          }\n\n          var win;\n          cy.window().then(function (window) {\n            var combinedSteps = []; //console.log(testcaseconfig.tcid);\n            //console.log(testcaseconfig.steps);\n\n            var stepsArray = testcaseconfig.steps; //fnBuildSteps(testcaseconfig.steps, testcaseconfig.data, key, combinedSteps, testcaseconfig.data)\n\n            console.log(stepsArray);\n            cy.executeCustomElementSteps(stepsArray);\n          });\n        }', type: 'test', duration: 24335, wallClockStartedAt: '2019-05-28T09:21:42.028Z', wallClockDuration: 24387, timings: { lifecycle: 896, test: [Object] } } ]
2019-05-28T09:22:07.606Z cypress:server:timers clearing timer id 27 from queue { '27': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:07.606Z cypress:server:timers queuing timer id 28 after 85000 ms
2019-05-28T09:22:07.607Z cypress:server:timers child received timer id 28
2019-05-28T09:22:07.608Z cypress:server:project onMocha suite end
2019-05-28T09:22:07.608Z cypress:server:reporter got mocha event 'suite end' with args: [ { id: 'r2', title: '16680 Mega Scenario for test', root: false, type: 'suite' } ]
2019-05-28T09:22:07.626Z cypress:server:timers clearing timer id 28 from queue { '28': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:07.626Z cypress:server:timers queuing timer id 29 after 85000 ms
2019-05-28T09:22:07.627Z cypress:server:timers child received timer id 29
2019-05-28T09:22:07.630Z cypress:server:project onMocha suite end
2019-05-28T09:22:07.630Z cypress:server:reporter got mocha event 'suite end' with args: [ { id: 'r1', title: '', root: true, type: 'suite' } ]
2019-05-28T09:22:07.634Z cypress:server:timers clearing timer id 29 from queue { '29': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:07.634Z cypress:server:timers queuing timer id 30 after 85000 ms
2019-05-28T09:22:07.642Z cypress:server:timers child received timer id 30
2019-05-28T09:22:07.642Z cypress:server:project onMocha end
2019-05-28T09:22:07.643Z cypress:server:reporter got mocha event 'end' with args: [ { end: '2019-05-28T09:22:06.509Z' } ]
2019-05-28T09:22:07.720Z cypress:server:run attempting to close the browser
2019-05-28T09:22:07.721Z cypress:server:browsers killing browser process
2019-05-28T09:22:07.961Z cypress:server:browsers:electron closed event fired
2019-05-28T09:22:07.962Z cypress:server:preprocessor removeFile /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:22:07.963Z cypress:server:preprocessor base emitter plugin close event
2019-05-28T09:22:07.966Z cypress:server:preprocessor base emitter native close event
2019-05-28T09:22:07.966Z cypress:browserify close: /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:22:07.967Z cypress:server:preprocessor base emitter native close event
2019-05-28T09:22:07.967Z cypress:browserify close: /root/cypress/support/index.js
2019-05-28T09:22:07.969Z cypress:browserify close: /root/cypress/integration/examples/ExecuteTestCase.js
2019-05-28T09:22:07.973Z cypress:server:browsers browser process killed
2019-05-28T09:22:08.003Z cypress:server:browsers:electron debugger detached due to { reason: 'target closed' }
2019-05-28T09:22:08.607Z cypress:server:run ending the video recording { name: '/root/cypress/videos/examples/ExecuteTestCase.js.mp4', videoCompression: false, shouldUploadVideo: true }
2019-05-28T09:22:08.733Z cypress:server:timers queuing timer id 31 after 30000 ms
2019-05-28T09:22:08.750Z cypress:server:timers child received timer id 31
2019-05-28T09:22:08.763Z cypress:server:timers clearing timer id 31 from queue { '30': { args: [], ms: 85000, cb: [Function] }, '31': { args: [], ms: 30000, cb: [Function: bound cleanupWebsocketResources] } }
2019-05-28T09:22:08.770Z cypress:server:timers clearing timer id 30 from queue { '30': { args: [], ms: 85000, cb: [Function] } }
2019-05-28T09:22:08.771Z cypress:server:timers clearing timer id 30 from queue {}
2019-05-28T09:22:11.894Z cypress:server:video capture stderr log { message: 'frame=   79 fps=7.8 q=15.0 size=       0kB time=00:00:03.08 bitrate=   0.1kbits/s dup=77 drop=0 speed=0.305x    ' }
2019-05-28T09:22:14.973Z cypress:server:timers child sending timer id 21
2019-05-28T09:22:27.058Z cypress:server:video capture stderr log { message: 'frame=  573 fps= 42 q=15.0 size=     256kB time=00:00:22.84 bitrate=  91.8kbits/s dup=570 drop=0 speed=1.66x    ' }
2019-05-28T09:22:27.242Z cypress:server:video capture stderr log { message: 'frame=  579 fps= 20 q=14.0 size=     256kB time=00:00:23.08 bitrate=  90.9kbits/s dup=575 drop=0 speed=0.797x    ' }
2019-05-28T09:22:27.791Z cypress:server:video capture stderr log { message: 'frame=  597 fps= 20 q=12.0 size=     256kB time=00:00:23.80 bitrate=  88.1kbits/s dup=590 drop=0 speed=0.804x    ' }
2019-05-28T09:22:28.743Z cypress:server:video capture stderr log { message: 'frame=  630 fps= 21 q=12.0 size=     256kB time=00:00:25.12 bitrate=  83.5kbits/s dup=619 drop=0 speed=0.826x    ' }
2019-05-28T09:22:29.462Z cypress:server:video capture stderr log { message: 'frame=  654 fps= 21 q=14.0 size=     256kB time=00:00:26.08 bitrate=  80.4kbits/s dup=640 drop=0 speed=0.836x    ' }
2019-05-28T09:22:29.872Z cypress:server:video capture stderr log { message: 'frame=  666 fps= 21 q=13.0 size=     256kB time=00:00:26.56 bitrate=  79.0kbits/s dup=649 drop=0 speed=0.838x    ' }
2019-05-28T09:22:30.938Z cypress:server:video capture stderr log { message: 'frame=  703 fps= 22 q=13.0 size=     256kB time=00:00:28.04 bitrate=  74.8kbits/s dup=682 drop=0 speed=0.858x    ' }
2019-05-28T09:22:32.198Z cypress:server:video capture stderr log { message: 'frame=  747 fps= 22 q=13.0 size=     256kB time=00:00:29.80 bitrate=  70.4kbits/s dup=723 drop=0 speed=0.883x    ' }
2019-05-28T09:22:34.292Z cypress:server:video capture stderr log { message: 'frame=  765 fps= 22 q=13.0 size=     256kB time=00:00:30.52 bitrate=  68.7kbits/s dup=739 drop=0 speed=0.884x    ' }
2019-05-28T09:22:34.990Z cypress:server:video capture stderr log { message: 'frame=  791 fps= 22 q=13.0 size=     256kB time=00:00:31.56 bitrate=  66.5kbits/s dup=764 drop=0 speed=0.872x    ' }
2019-05-28T09:22:35.114Z cypress:server:video capture stderr log { message: 'frame=  795 fps= 22 q=13.0 size=     256kB time=00:00:31.72 bitrate=  66.1kbits/s dup=767 drop=0 speed=0.86x    ' }
2019-05-28T09:22:35.770Z cypress:server:video capture stderr log { message: 'frame=  816 fps= 22 q=13.0 size=     256kB time=00:00:32.56 bitrate=  64.4kbits/s dup=784 drop=0 speed=0.866x    ' }
2019-05-28T09:22:36.354Z cypress:server:video capture stderr log { message: 'frame=  836 fps= 22 q=13.0 size=     256kB time=00:00:33.36 bitrate=  62.9kbits/s dup=801 drop=0 speed=0.874x    ' }
2019-05-28T09:22:37.570Z cypress:server:video capture stderr log { message: 'frame=  881 fps= 23 q=14.0 size=     256kB time=00:00:35.16 bitrate=  59.7kbits/s dup=843 drop=0 speed=0.908x    ' }
2019-05-28T09:22:37.882Z cypress:server:video capture stderr log { message: 'frame=  891 fps= 23 q=13.0 size=     256kB time=00:00:35.56 bitrate=  59.0kbits/s dup=852 drop=0 speed=0.901x    ' }
2019-05-28T09:22:38.346Z cypress:server:video capture stderr log { message: 'frame=  907 fps= 23 q=13.0 size=     256kB time=00:00:36.20 bitrate=  57.9kbits/s dup=865 drop=0 speed=0.905x    ' }
2019-05-28T09:22:38.782Z cypress:server:timers child sending timer id 31
2019-05-28T09:22:39.466Z cypress:server:video capture stderr log { message: 'frame=  947 fps= 23 q=13.0 size=     256kB time=00:00:37.80 bitrate=  55.5kbits/s dup=903 drop=0 speed=0.919x    ' }
2019-05-28T09:22:40.466Z cypress:server:video capture stderr log { message: 'frame=  979 fps= 23 q=13.0 size=     256kB time=00:00:39.08 bitrate=  53.7kbits/s dup=931 drop=0 speed=0.929x    ' }
2019-05-28T09:22:40.495Z cypress:server:video capture stderr log { message: 'More than 1000 frames duplicated' }
2019-05-28T09:22:41.260Z cypress:server:timers child sending timer id 5
2019-05-28T09:22:42.137Z cypress:server:timers child sending timer id 6
2019-05-28T09:22:42.367Z cypress:server:timers child sending timer id 7
2019-05-28T09:22:43.017Z cypress:server:timers child sending timer id 9
2019-05-28T09:22:44.117Z cypress:server:timers child sending timer id 10
2019-05-28T09:22:44.257Z cypress:server:timers child sending timer id 11
2019-05-28T09:23:06.501Z cypress:server:timers child sending timer id 12
2019-05-28T09:23:06.613Z cypress:server:timers child sending timer id 13
2019-05-28T09:23:07.165Z cypress:server:timers child sending timer id 14
2019-05-28T09:23:07.193Z cypress:server:timers child sending timer id 15
2019-05-28T09:23:07.326Z cypress:server:timers child sending timer id 16
2019-05-28T09:23:07.681Z cypress:server:timers child sending timer id 17
2019-05-28T09:23:07.825Z cypress:server:timers child sending timer id 18
2019-05-28T09:23:08.077Z cypress:server:timers child sending timer id 19
2019-05-28T09:23:08.877Z cypress:server:timers child sending timer id 20
2019-05-28T09:23:10.566Z cypress:server:video capture stderr log { message: 'frame= 2038 fps= 28 q=13.0 size=     768kB time=00:01:21.44 bitrate=  77.3kbits/s dup=1988 drop=0 speed=1.13x    ' }
2019-05-28T09:23:30.148Z cypress:server:timers child sending timer id 24
2019-05-28T09:23:31.216Z cypress:server:video capture stderr log { message: 'frame= 2790 fps= 30 q=13.0 size=    1024kB time=00:01:51.52 bitrate=  75.2kbits/s dup=2738 drop=0 speed= 1.2x    ' }
2019-05-28T09:23:31.388Z cypress:server:video capture stderr log { message: 'frame= 2796 fps= 30 q=12.0 Lsize=    1070kB time=00:01:51.80 bitrate=  78.4kbits/s dup=2744 drop=0 speed= 1.2x    ' }
2019-05-28T09:23:31.398Z cypress:server:video capture stderr log { message: 'video:1059kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 1.114262%' }
2019-05-28T09:23:31.400Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] frame I:12    Avg QP:10.08  size: 77046' }
2019-05-28T09:23:31.406Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] frame P:2784  Avg QP:12.13  size:    57' }
2019-05-28T09:23:31.410Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] mb I  I16..4: 100.0%  0.0%  0.0%' }
2019-05-28T09:23:31.411Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] mb P  I16..4:  0.0%  0.0%  0.0%  P16..4:  0.2%  0.0%  0.0%  0.0%  0.0%    skip:99.8%' }
2019-05-28T09:23:31.418Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] coded y,uvDC,uvAC intra: 15.1% 0.8% 0.8% inter: 0.1% 0.0% 0.0%' }
2019-05-28T09:23:31.422Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] i16 v,h,dc,p: 79% 12%  3%  6%' }
2019-05-28T09:23:31.423Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] i8c dc,h,v,p: 98%  2%  0%  0%' }
2019-05-28T09:23:31.430Z cypress:server:video capture stderr log { message: '[libx264 @ 0x5dd8cc0] kb/s:77.49' }
2019-05-28T09:23:31.438Z cypress:server:video capture stderr log { message: '' }
2019-05-28T09:23:31.443Z cypress:server:video capture ended
2019-05-28T09:23:31.451Z cypress:server:run spec results { stats: { suites: 1, tests: 1, passes: 0, pending: 0, skipped: 0, failures: 1, wallClockStartedAt: 2019-05-28T09:21:41.781Z, wallClockEndedAt: 2019-05-28T09:22:06.509Z, wallClockDuration: 24728 }, reporter: 'spec', reporterStats: { suites: 1, tests: 1, passes: 0, pending: 0, failures: 1, start: 2019-05-28T09:21:42.175Z, end: 2019-05-28T09:22:07.643Z, duration: 25468 }, hooks: [], tests: [ { testId: 'r3', title: [Array], state: 'failed', body: 'function () {\n          var steps = testcaseconfig.steps;\n          console.log(steps[0]);\n\n          if (steps[0].stype == "newStep") {\n            cy.visit(\'\');\n            cy.wait(1000);\n          } else {\n            cy.logintlc();\n            cy.wait(1000);\n          }\n\n          var win;\n          cy.window().then(function (window) {\n            var combinedSteps = []; //console.log(testcaseconfig.tcid);\n            //console.log(testcaseconfig.steps);\n\n            var stepsArray = testcaseconfig.steps; //fnBuildSteps(testcaseconfig.steps, testcaseconfig.data, key, combinedSteps, testcaseconfig.data)\n\n            console.log(stepsArray);\n            cy.executeCustomElementSteps(stepsArray);\n          });\n        }', stack: 'TypeError: Cannot read property \'replace\' of null\n    at sanitize (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:41:6)\n    at module.exports (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/sanitize-filename/index.js:51:16)\n    at Array.map (<anonymous>:null:null)\n    at getPath (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:269:28)\n    at getPathToScreenshot (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:289:12)\n    at Object.save (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/screenshots.js:384:14)\n    at /root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/lib/automation/screenshot.js:15:30\n    at tryCatcher (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23)\n    at Promise._settlePromiseFromHandler (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:510:31)\n    at Promise._settlePromise (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:567:18)\n    at Promise._settlePromise0 (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:612:10)\n    at Promise._settlePromises (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:691:18)\n    at Async._drainQueue (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:133:16)\n    at Async._drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:143:10)\n    at Immediate.Async.drainQueues (/root/.cache/Cypress/3.3.1/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:17:14)\n    at runCallback (timers.js:789:20)\n    at tryOnImmediate (timers.js:751:5)\n    at processImmediate [as _immediateCallback] (timers.js:722:5)\n', error: 'Cannot read property \'replace\' of null', timings: [Object], failedFromHookId: null, wallClockStartedAt: 2019-05-28T09:21:42.028Z, wallClockDuration: 24387, videoTimestamp: 35955 } ], error: null, video: '/root/cypress/videos/examples/ExecuteTestCase.js.mp4', screenshots: [], spec: { name: 'examples/ExecuteTestCase.js', relative: 'cypress/integration/examples/ExecuteTestCase.js', absolute: '/root/cypress/integration/examples/ExecuteTestCase.js' }, shouldUploadVideo: true }
2019-05-28T09:23:31.456Z cypress:server:run final results of all runs: { startedTestsAt: 2019-05-28T09:21:41.781Z, endedTestsAt: 2019-05-28T09:22:06.509Z, totalDuration: 24728, totalSuites: 1, totalTests: 1, totalFailed: 1, totalPassed: 0, totalPending: 0, totalSkipped: 0, runs: [ { stats: [Object], reporter: 'spec', reporterStats: [Object], hooks: [], tests: [Array], error: null, video: '/root/cypress/videos/examples/ExecuteTestCase.js.mp4', screenshots: [], spec: [Object], shouldUploadVideo: true } ], browserPath: '', browserName: 'electron', browserVersion: '61.0.3163.100', osName: 'linux', osVersion: 'Ubuntu Linux - 16.04', cypressVersion: '3.3.1', runUrl: undefined, config: { videoCompression: false, baseUrl: 'http://192.168.4.28/', projectRoot: '/root', projectName: 'root', morgan: false, isTextTerminal: true, socketId: 'nw5sb', report: true, port: 40132, hosts: null, userAgent: null, reporter: 'spec', reporterOptions: null, blacklistHosts: null, clientRoute: '/__/', xhrRoute: '/xhrs/', socketIoRoute: '/__socket.io', socketIoCookie: '__socket.io', reporterRoute: '/__cypress/reporter', ignoreTestFiles: '*.hot-update.js', testFiles: '**/*.*', defaultCommandTimeout: 4000, requestTimeout: 5000, responseTimeout: 30000, pageLoadTimeout: 60000, execTimeout: 60000, taskTimeout: 60000, video: true, videoUploadOnPasses: true, modifyObstructiveCode: true, chromeWebSecurity: true, waitForAnimations: true, animationDistanceThreshold: 5, numTestsKeptInMemory: 0, watchForFileChanges: false, trashAssetsBeforeRuns: true, autoOpen: false, viewportWidth: 1000, viewportHeight: 660, fileServerFolder: '/root', videosFolder: '/root/cypress/videos', supportFile: '/root/cypress/support/index.js', fixturesFolder: '/root/cypress/fixtures', integrationFolder: '/root/cypress/integration', screenshotsFolder: '/root/cypress/screenshots', namespace: '__cypress', pluginsFile: '/root/cypress/plugins/index.js', javascripts: [], env: { username: 'amir.dhaoui', password: 'xxxxxxxx', userrole: [Object], tlc: [Object] }, cypressEnv: 'production', resolved: { animationDistanceThreshold: [Object], fileServerFolder: [Object], baseUrl: [Object], fixturesFolder: [Object], chromeWebSecurity: [Object], modifyObstructiveCode: [Object], integrationFolder: [Object], env: [Object], pluginsFile: [Object], hosts: [Object], screenshotsFolder: [Object], numTestsKeptInMemory: [Object], supportFile: [Object], port: [Object], reporter: [Object], videosFolder: [Object], reporterOptions: [Object], testFiles: [Object], defaultCommandTimeout: [Object], trashAssetsBeforeRuns: [Object], execTimeout: [Object], blacklistHosts: [Object], pageLoadTimeout: [Object], userAgent: [Object], requestTimeout: [Object], viewportWidth: [Object], responseTimeout: [Object], viewportHeight: [Object], taskTimeout: [Object], video: [Object], videoCompression: [Object], videoUploadOnPasses: [Object], watchForFileChanges: [Object], waitForAnimations: [Object] }, parentTestsFolder: '/root/cypress', parentTestsFolderDisplay: 'root/cypress', supportFolder: '/root/cypress/support', integrationExampleName: 'examples', integrationExamplePath: '/root/cypress/integration/examples', scaffoldedFiles: [ [Object] ], state: {}, proxyUrl: 'http://localhost:40132', browserUrl: 'http://192.168.4.28/__/', reporterUrl: 'http://192.168.4.28/__cypress/reporter', xhrUrl: '__cypress/xhrs/' } }
2019-05-28T09:23:31.513Z cypress:server:timers child sending timer id 25
2019-05-28T09:23:31.882Z cypress:server:cypress about to exit with code 1
2019-05-28T09:23:32.066Z cypress:cli Stopping Xvfb

@amirdhaoui
Copy link
Author

amirdhaoui commented May 28, 2019

Then I changed the code and I used a static test title.
The bebug returns the error below

cypress:server:reporter got mocha event 'test end' with args: [ { 
  id: 'r3', 
  title: 'hello', 
  err: { 
    message: 'Load timeout for modules:
pascalprecht.translate.storage.local,datetime
http://requirejs.org/docs/errors.html#timeout

This error originated from your application code, not from Cypress.

When Cypress detects uncaught errors originating from your application it will automatically fail the current test.

This behavior is configurable, and you can choose to turn this off by listening to the 'uncaught:exception' event.

https://on.cypress.io/uncaught-exception-from-application', name: 'Uncaught Error', stack: 'Uncaught Error: Load timeout for modules:

@jennifer-shehane
Copy link
Member

@amirdhaoui This most recent error is different from the one you posted earlier. This error is being thrown from within your application code.

Load timeout for modules: pascalprecht.translate.storage.local,datetime http://requirejs.org/docs/errors.html#timeout

@amirdhaoui
Copy link
Author

amirdhaoui commented May 29, 2019

@jennifer-shehane I think yes the problem is from the application it takes too long to load and cypress doesn't wait until it loads all files so it returns fail in some cases. A solution could be to use a higher Timeout variable in cypress maybe it resolves the prob.

@cypress-bot
Copy link
Contributor

cypress-bot bot commented Jun 12, 2019

The code for this is done in cypress-io/cypress#4317, but has yet to be released.
We'll update this issue and reference the changelog when it's released.

@cypress-bot cypress-bot bot removed the stage: needs review The PR code is done & tested, needs review label Jun 12, 2019
@cypress-bot
Copy link
Contributor

cypress-bot bot commented Jun 27, 2019

Released in 3.3.2.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pkg/server This is due to an issue in the packages/server directory topic: screenshots 📸 type: bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants