(val)
| 9 | var other = {}; |
| 10 | |
| 11 | function fakeResolved(val) { |
| 12 | return { |
| 13 | then: function(callback) { |
| 14 | return fakeResolved(callback ? callback(val) : val); |
| 15 | } |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | function fakeRejected(reason) { |
| 20 | return { |
no test coverage detected
searching dependent graphs…