* Skip to a specific step * @param {number} stepIndex
(stepIndex)
| 79 | * @param {number} stepIndex |
| 80 | */ |
| 81 | goToStep(stepIndex) { |
| 82 | if (stepIndex >= 0) { |
| 83 | this.currentStep = stepIndex; |
| 84 | this.saveProgress(); |
| 85 | this.emit('step', this.currentStep); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Complete the tutorial |
nothing calls this directly
no test coverage detected