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