(next)
| 274 | } |
| 275 | |
| 276 | function update(next) { |
| 277 | const model = test.model; |
| 278 | |
| 279 | model.name += 'updated'; |
| 280 | model.save(function(err) { |
| 281 | test.revisionForModel = Change.revisionForInst(model); |
| 282 | |
| 283 | next(err); |
| 284 | }); |
| 285 | } |
| 286 | }); |
| 287 | |
| 288 | it('should not change checkpoint when rev is the same', function(done) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…