All files / botbuilder-unit testRunner.js

83.33% Statements 10/12
100% Branches 0/0
0% Functions 0/2
83.33% Lines 10/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 231x     1x       1x 1x   1x 1x         1x 1x       1x 1x
process.on('uncaughtException', function (exception) {
  console.log(exception);
});
process.on('unhandledRejection', function (reason, p) {
  console.log("Unhandled Rejection at: Promise ", p, " reason: ", reason);
});
 
var Jasmine = require('jasmine');
var jasmine = new Jasmine();
 
jasmine.loadConfigFile('./spec/support/jasmine.json');
jasmine.configureDefaultReporter({
  showColors: true
});
 
 
var Reporter = require('jasmine-terminal-reporter');
var reporter = new Reporter({
  isVerbose: true,
  includeStackTrace: true
})
jasmine.addReporter(reporter);
jasmine.execute();