(propName: string)
| 115 | */ |
| 116 | describe(`BTreeIndex - undefined value handling`, () => { |
| 117 | function createIndex(propName: string): BTreeIndex<string> { |
| 118 | return new BTreeIndex<string>(1, new PropRef([propName]), `test_index`) |
| 119 | } |
| 120 | |
| 121 | describe(`take vs takeFromStart`, () => { |
| 122 | it(`should distinguish take(n, undefined) from takeFromStart(n)`, () => { |
no outgoing calls
no test coverage detected