(fsm: any)
| 51 | } |
| 52 | |
| 53 | function reachReview(fsm: any): void { |
| 54 | fsm.handle("selectNewCustomer"); |
| 55 | fsm.handle("next", PERSONAL_DETAILS_ZAPHOD); |
| 56 | fsm.handle("next", { ...PAYMENT_DETAILS_VISA, scenario: "success" }); |
| 57 | jest.runAllTimers(); |
| 58 | } |
| 59 | |
| 60 | function reachConfirmation(fsm: any): void { |
| 61 | reachReview(fsm); |
no test coverage detected