Skip to content

Running tests on Jenkins: TypeError: Cannot read property 'message' of undefined #27

@Lukas-Kullmann

Description

@Lukas-Kullmann

When running our tests on our Jenkins, I get an error

/var/lib/****/node_modules/browserstack-local/lib/Local.js:61
          callback(new LocalError(data['message']['message']));
                                                 ^

TypeError: Cannot read property 'message' of undefined
    at /var/lib/****/node_modules/browserstack-local/lib/Local.js:61:50
    at ChildProcess.exithandler (child_process.js:267:7)
    at emitTwo (events.js:126:13)
    at ChildProcess.emit (events.js:214:7)
    at maybeClose (internal/child_process.js:925:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)

The issue here is, that the response of the childProcess.execFile in the browserstack-local package is empty. error is null and stdout and stderr are both empty strings. That's why data is an empty object.

I tried investigating what is going on, but I did not find a solution.

The binaryArgs for our run were:

[ '--daemon',
  'start',
  '--log-file',
  '/dev/null',
  '--key',
  '****',
  '--local-identifier',
  1523874577640,
  '--enable-logging-for-api' ]

If I try to provide a logfile, it will be empty.

We do not use a proxy.

If I run the tests locally on my machine (with the same credentials), I do not get an error. The tests start normally.

Did anybody ever have a similar issue or does anybody have an idea what might be going on? Any help would be appreciated!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions