| 183 | * @param {t.TestCase} tc |
| 184 | */ |
| 185 | export const testConcurrentInsertDeleteWithThreeConflicts = tc => { |
| 186 | const { testConnector, users, array0, array1, array2 } = init(tc, { users: 3 }) |
| 187 | array0.insert(0, ['x', 'y', 'z']) |
| 188 | testConnector.flushAllMessages() |
| 189 | array0.insert(1, [0]) |
| 190 | array1.delete(0) |
| 191 | array1.delete(1, 1) |
| 192 | array2.insert(1, [2]) |
| 193 | compare(users) |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * @param {t.TestCase} tc |
nothing calls this directly
no test coverage detected
searching dependent graphs…