Open notVitaliy opened 8 years ago
@pghalliday Changing spawn
to exec
here:
https://github.com/pghalliday/node-BrowserStackTunnel/blob/master/src/BrowserStackTunnel.js#L150
Seems to have fixed my issue.
In case you (or someone else) still has this problem Error: spawn EACCES
:
Try chaning the tunnel binary location (via the config):
osxBin: 'your_bin_dir', // optionally override the default bin directory for the OSX binary
linux32Bin: 'your_bin_dir', // optionally override the default bin directory for the Linux 32 bit binary
linux64Bin: 'your_bin_dir', // optionally override the default bin directory for the Linux 64 bit binary
win32Bin: 'your_bin_dir', // optionally override the default bin directory for the win32 binary
I specified the binary location to be within my project/repo root (and of course remember to gitignore that binary) and after that everything works.
I'm getting the following error when running protractor:
I'm running this using the
beforeLaunch
function for protractor, here is my code:ubunutu: 16.04
node: 6.2.0
npm: 3.8.9
The error seems to be a permissions error, I've chown'd the entire directory to the proper user:group but that didn't fix it.
Let me know if you need any more info.