(id: string)
| 247 | } |
| 248 | |
| 249 | retryOperation(id: string): PendingOperation | null { |
| 250 | const operation = this.state.operations.find(op => op.id === id) |
| 251 | if (!operation || operation.status !== 'failed') return null |
| 252 | operation.status = 'approved' |
| 253 | operation.result = undefined |
| 254 | return operation |
| 255 | } |
| 256 | |
| 257 | /** Execute all approved operations (mock: instant success unless configured otherwise). */ |
| 258 | executeOperations(options?: ExecuteOptions): ExecuteResult { |
no outgoing calls
no test coverage detected