(Model)
| 125 | }); |
| 126 | |
| 127 | function mockRectifyAllChanges(Model) { |
| 128 | const calls = []; |
| 129 | |
| 130 | Model.rectifyAllChanges = function(cb) { |
| 131 | calls.push('rectifyAllChanges'); |
| 132 | process.nextTick(cb); |
| 133 | }; |
| 134 | |
| 135 | return calls; |
| 136 | } |
| 137 | }); |
| 138 | |
| 139 | describe('optimization check rectifyChange Vs rectifyAllChanges', function() { |
no outgoing calls
no test coverage detected
searching dependent graphs…