blob: 621b816f325301e071d3b80f50b74b002c8d09f8 (
plain)
1
2
3
4
5
6
7
8
|
'use strict';
/**
* Creates a global value $result with the result of the runner.
*/
angular.scenario.output('object', function(context, runner, model) {
runner.$window.$result = model.value;
});
|