()
| 603 | // apply transition effect if configured |
| 604 | if (_transitionConfig.duration && _stages[stateId].transition) { |
| 605 | const onComplete = () => { |
| 606 | defer(_switchState, state, stateId); |
| 607 | }; |
| 608 | |
| 609 | switch (_transitionType) { |
| 610 | case "fade": { |
no test coverage detected