blob: 94212301dc4db5ab8ce94498bdf71ad33998e868 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | /**
 * Generates JSON output into a context.
 */
angular.scenario.output('json', function(context, runner) {
  var model = new angular.scenario.ObjectModel(runner);
  
  runner.on('RunnerEnd', function() {
    context.text(angular.toJson(model.value));
  });
});
 |