Skip to content

Commit

Permalink
fix: include stack in browser uncaught error reporting (#5107)
Browse files Browse the repository at this point in the history
* Include stack in browser uncaught error reporting

* Attempt at testing (failing due to uncaught exception)

* Revert "Attempt at testing (failing due to uncaught exception)"

This reverts commit 30c7ffb.

* implemented test in throw.spec.js & got it passing

* Apply suggestions from code review

* Update test/unit/throw.spec.js

Co-authored-by: Pelle Wessman <pelle@kodfabrik.se>

* test: fix up throw.spec.js

---------

Co-authored-by: Peter Rust <peter@cornerstonenw.com>
Co-authored-by: Pelle Wessman <pelle@kodfabrik.se>
  • Loading branch information
3 people committed Jun 22, 2024
1 parent e030115 commit 67a8124
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser-entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ process.listenerCount = function (name) {

process.on = function (e, fn) {
if (e === 'uncaughtException') {
global.onerror = function (err, url, line) {
fn(new Error(err + ' (' + url + ':' + line + ')'));
global.onerror = function (msg, url, line, col, err) {
fn(err || new Error(msg + ' (' + url + ':' + line + ':' + col + ')'));
return !mocha.options.allowUncaught;
};
uncaughtExceptionHandlers.push(fn);
Expand Down
33 changes: 33 additions & 0 deletions test/unit/throw.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

/* eslint no-throw-literal: off */

var sinon = require('sinon');
var Mocha = require('../../lib/mocha');
var Suite = Mocha.Suite;
var Test = Mocha.Test;
Expand Down Expand Up @@ -29,6 +30,7 @@ describe('a test that throws', function () {
uncaughtHandlers.forEach(function (listener) {
process.on('uncaughtException', listener);
});
sinon.restore();
});

describe('non-extensible', function () {
Expand Down Expand Up @@ -172,4 +174,35 @@ describe('a test that throws', function () {
runner.run();
});
});

describe('stack', function() {
it('should include the stack when throwing async', function(done) {
var test = new Test('im async and throw null async', function(done2) {
process.nextTick(function throwError() {
throw new Error('test error');
});
});
suite.addTest(test);
runner = new Runner(suite);
sinon.stub(runner, 'fail');

runner.on(EVENT_RUN_END, function() {
try {
expect(runner.fail, 'to have all calls satisfying', [
expect.it('to be a', Runnable),
expect.it('to be an', Error).and('to satisfy', {
message: /test error/i,
stack: /throwError/i,
uncaught: true
})
]).and('was called once');
} catch (err) {
return done(err);
}

done();
});
runner.run();
});
});
});

0 comments on commit 67a8124

Please sign in to comment.