blob: 2c8524967610b98a82585b44b719bf5572457198 (
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));
});
});
|