(testPath: string)
| 49 | } |
| 50 | |
| 51 | delete(testPath: string) { |
| 52 | const record = this._array.find( |
| 53 | record => record !== null && record.testPath === testPath, |
| 54 | ); |
| 55 | this._array[this._array.indexOf(record || null)] = null; |
| 56 | } |
| 57 | |
| 58 | get() { |
| 59 | return this._array; |
no outgoing calls
no test coverage detected