Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stack-trace.spec.js « browser « test « mocha-3.1.0 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b39944db095b4a73b39ff6b95029ba1850986f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';
describe('Stack trace', function() {
  it('should prettify the stack-trace', function() {
    var err = new Error();
    // We do this fake stack-trace because we under development,
    // and our root isn't `node_modules`, `bower` or `components`
    err.stack = ['Error: failed'
      , 'at assert (stack-trace.html:11:30)'
      , 'at Context.<anonymous> (stack-trace.js:5:5)'
      , 'at callFn (http://localhost:63342/node_modules/mocha.js:4546:21)'
      , 'at Test.require.register.Runnable.run (http://localhost:63342/node_modules/mocha.js:4539:7)'
      , 'at Runner.require.register.Runner.runTest (http://localhost:63342/node_modules/mocha.js:4958:10)'
      , 'at http://localhost:63342/bower_components/mocha.js:5041:12'
      , 'at next (http://localhost:63342/bower_components/mocha.js:4883:14)'
      , 'at http://localhost:63342/bower_components/mocha.js:4893:7'
      , 'at next (http://localhost:63342/bower_components/mocha.js:4828:23)'
      , 'at http://localhost:63342/bower_components/mocha.js:4860:5'].join('\n');
    assert(false, err);
  });
});