(bKeys)
| 153 | |
| 154 | describe('PartitionedMap', function () { |
| 155 | function createPartitionedMap (bKeys) { |
| 156 | const a = new Map() |
| 157 | const b = new Map() |
| 158 | const p = new PartitionedMap(a, b, new Set(bKeys)) |
| 159 | return { a, b, p } |
| 160 | } |
| 161 | |
| 162 | it('get, set', function () { |
| 163 | const { a, b, p } = createPartitionedMap(['b']) |
no outgoing calls
no test coverage detected
searching dependent graphs…