-
-
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
output stream error #159
Comments
Can you share more about your setup? Did you follow this tutorial https://github.com/juliangruber/tape-run#with-webpack? |
Could you share your test file too? |
You can clone https://github.com/syarul/webpack-tape-run/tree/tape-run-v9
the test file var test = require('tape')
test('test success', function(t) {
t.plan(2)
t.equal(1, 1)
t.equal('foo', 'bar')
t.end()
}) I put extra logging to the code, the issue might be related to electron-stream, since this commit is the start of the error, only occurs on failing test, but on success does not happen. You can check the appveyor ci test to see the logging output |
IMO, I think this similar to node.js on how to handle process.on('uncaughtException', (err, origin) => {
\\
}); |
Having issue with tape-run v6 upwards which base on browser-run 6.
The text was updated successfully, but these errors were encountered: