You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 28, 2023. It is now read-only.
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.
Copy file name to clipboardexpand all lines: test/adapter.spec.js
+31
Original file line number
Diff line number
Diff line change
@@ -287,6 +287,37 @@ describe('adapter mocha', function () {
287
287
288
288
expect(tc.result.called).to.eq(true)
289
289
})
290
+
291
+
it('should not remove escaped strings containing mocha stack entries',function(){
292
+
sandbox.stub(tc,'result',function(result){
293
+
varlog=result.log[0]
294
+
expect(log).to.contain('something important that contains an escaped mocha stack trace')
295
+
})
296
+
297
+
varmockMochaResult={
298
+
parent: {root: true}
299
+
}
300
+
301
+
varstack=
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'+
0 commit comments