| 233 | * @param {t.TestCase} tc |
| 234 | */ |
| 235 | export const testDeletionsInLateSync = tc => { |
| 236 | const { testConnector, users, array0, array1 } = init(tc, { users: 2 }) |
| 237 | array0.insert(0, ['x', 'y']) |
| 238 | testConnector.flushAllMessages() |
| 239 | users[1].disconnect() |
| 240 | array1.delete(1, 1) |
| 241 | array0.delete(0, 2) |
| 242 | users[1].connect() |
| 243 | compare(users) |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * @param {t.TestCase} tc |
nothing calls this directly
no test coverage detected
searching dependent graphs…