-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
No output #153
Comments
Running another test: test.js: var run = require('browser-run');
var browser = run();
browser.pipe(process.stdout);
browser.end('console.log(location); window.close()');
process.stdout.write('hi');// Check to see if console output is working bash:
It should also output the location but does not. No errors are reported. |
I tried to run
|
Have you installed browser-run globally? |
@ashnur I just ran it using a global installation, same results. Before it was not |
Weird. maybe try with a different browser or try the development version (cloning this repo and try running the tests locally). Also, if you share more information about the context, I am sure more people will likely to chime in with suggestions. |
The thing is, I understand that electron will not run. So that's probably the hangup. I would like to know however why it doesn't output any error message. How can I get more debug info from browser-run? |
This method does the actual spawning: I guess we could read from |
I'm having the same issue, using browser-run indirectly through tape-run. Electron fails to start (in my case due to |
When I run the example
echo "console.log('Hey from ' + location); window.close()" | browser-run
I get no output, but also no error message. How can I debug this?
The text was updated successfully, but these errors were encountered: