(done)
| 400 | // TODO(bajtos) verify conflict resolution |
| 401 | |
| 402 | function setupModifiedLocalCopyOfAlice(done) { |
| 403 | // Replicate directly, bypassing REST+AUTH layers |
| 404 | replicateServerToLocal(function(err) { |
| 405 | if (err) return done(err); |
| 406 | |
| 407 | LocalUser.updateAll( |
| 408 | {id: aliceId}, |
| 409 | {fullname: 'Alice Smith'}, |
| 410 | done, |
| 411 | ); |
| 412 | }); |
| 413 | } |
| 414 | }); |
| 415 | |
| 416 | const USER_PROPS = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…