(next)
| 264 | } |
| 265 | |
| 266 | function checkpoint(next) { |
| 267 | TestModel.checkpoint(function(err, inst) { |
| 268 | if (err) return next(err); |
| 269 | |
| 270 | cp = inst.seq; |
| 271 | |
| 272 | next(); |
| 273 | }); |
| 274 | } |
| 275 | |
| 276 | function update(next) { |
| 277 | const model = test.model; |
nothing calls this directly
no test coverage detected
searching dependent graphs…