Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit c893d0a

Browse files
rlubadignifiedquire
authored andcommitted
fix: "remove mocha stack entries" was too greedy
When asserting on Errors and promises, mismatch descriptions sometimes contain JSONified stack traces. But the `.+` in the "remove mocha stack entries" RegExp is too greedy and erases the whole assertion error in theses cases.
1 parent 24980f0 commit c893d0a

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

src/adapter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var formatError = function (error) {
3030
}
3131

3232
// remove mocha stack entries
33-
return stack.replace(/\n.+\/mocha\/mocha.js\?\w*:.+(?=(\n|$))/g, '')
33+
return stack.replace(/\n.+\/mocha\/mocha\.js\?\w*:[\d:]+\)?(?=(\n|$))/g, '')
3434
}
3535

3636
return message

test/adapter.spec.js

+31
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,37 @@ describe('adapter mocha', function () {
287287

288288
expect(tc.result.called).to.eq(true)
289289
})
290+
291+
it('should not remove escaped strings containing mocha stack entries', function () {
292+
sandbox.stub(tc, 'result', function (result) {
293+
var log = result.log[0]
294+
expect(log).to.contain('something important that contains an escaped mocha stack trace')
295+
})
296+
297+
var mockMochaResult = {
298+
parent: {root: true}
299+
}
300+
301+
var stack =
302+
'something important that contains an escaped mocha stack trace at workFn (http://localhost:8080/base/app/bower_components/angular-mocks/angular-mocks.js?506e0a37bcd764ec63da3fd7005bf56592b3df32:2194)\\n at callFn (http://localhost:8080/base/node_modules/mocha/mocha.js?312499f61e38c4f82b2789b388ced378202a1e75:4471:21)\\n at Hook.Runnable.run (http://localhost:8080/base/node_modules/mocha/mocha.js?312499f61e38c4f82b2789b388ced378202a1e75:4464:7)\\n\n' +
303+
'at $httpBackend (http://localhost:8080/base/app/bower_components/angular-mocks/angular-mocks.js?506e0a37bcd764ec63da3fd7005bf56592b3df32:1149)\n' +
304+
'at sendReq (http://localhost:8080/base/app/bower_components/angular/angular.js?7deca05396a4331b08f812e4962ef9df1d9de0b5:8408)\n' +
305+
'at http://localhost:8080/base/app/bower_components/angular/angular.js?7deca05396a4331b08f812e4962ef9df1d9de0b5:8125\n' +
306+
'at http://localhost:8080/base/test/client/spec/controllers/list/formCtrlSpec.js?67eaca0f801cf45a86802a262618a6cfdc6a47be:110\n' +
307+
'at invoke (http://localhost:8080/base/app/bower_components/angular/angular.js?7deca05396a4331b08f812e4962ef9df1d9de0b5:4068)\n' +
308+
'at workFn (http://localhost:8080/base/app/bower_components/angular-mocks/angular-mocks.js?506e0a37bcd764ec63da3fd7005bf56592b3df32:2194)\n' +
309+
'at callFn (http://localhost:8080/base/node_modules/mocha/mocha.js?529c1ea3966a13c21efca5afe9a2317dafcd8abc:4338)\n' +
310+
'at http://localhost:8080/base/node_modules/mocha/mocha.js?529c1ea3966a13c21efca5afe9a2317dafcd8abc:4331\n' +
311+
'at next (http://localhost:8080/base/node_modules/mocha/mocha.js?529c1ea3966a13c21efca5afe9a2317dafcd8abc:4653)\n' +
312+
'at http://localhost:8080/base/node_modules/mocha/mocha.js?529c1ea3966a13c21efca5afe9a2317dafcd8abc:4663\n' +
313+
'at next (http://localhost:8080/base/node_modules/mocha/mocha.js?529c1ea3966a13c21efca5afe9a2317dafcd8abc:4601)\n'
314+
315+
runner.emit('test', mockMochaResult)
316+
runner.emit('fail', mockMochaResult, {message: 'Another fail.', stack: stack})
317+
runner.emit('test end', mockMochaResult)
318+
319+
expect(tc.result.called).to.eq(true)
320+
})
290321
})
291322
})
292323

0 commit comments

Comments
 (0)