Will it be possible to add a feature where a developer can jump to a certain step by skipping steps in-between?
for example:
track :step_1
track :step_2
track :step_3
def step_1
jump_to :step_3 # this will jump to step_3 and skip step_2
end
def step_2
# Step 2 codes here
end
def step_3
# Step 3 codes here
end
Will it be possible to add a feature where a developer can jump to a certain step by skipping steps in-between? for example: