(input, options: CreateIndexesOptions = {})
| 100 | ]; |
| 101 | |
| 102 | const makeIndexOperation = (input, options: CreateIndexesOptions = {}) => |
| 103 | CreateIndexesOperation.fromIndexSpecification( |
| 104 | { s: { namespace: ns('a.b') } }, |
| 105 | 'b', |
| 106 | input, |
| 107 | options |
| 108 | ); |
| 109 | |
| 110 | describe('#constructor()', () => { |
| 111 | for (const { description, input, mapData, name } of testCases) { |
no test coverage detected