()
| 363 | const withdrawalRequestId = requestWithdrawalOutput.split('Withdrawal request ID: ')[1]; |
| 364 | |
| 365 | const checkWithdrawalStatus = () => |
| 366 | execCommand( |
| 367 | 'check-withdrawal-request', |
| 368 | ['--provider-url', PROVIDER_URL], |
| 369 | ['--airnode-rrp-address', airnodeRrp.address], |
| 370 | ['--withdrawal-request-id', withdrawalRequestId] |
| 371 | ); |
| 372 | |
| 373 | expect(checkWithdrawalStatus()).toBe('Withdrawal request is not fulfilled yet'); |
| 374 |
no test coverage detected