You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
turning of later parts of a pipeline while debugging the earlier parts
turning of displays that are not needed right now for less scrolling
At the UI level this involves adding a toggle for a boolean value called, say, disabled to each SpecStep. This information would be added to specSteps via the update callback.
At the business level, I think we would just need to filter specSteps at the top of runCallback to return an array that only contains non-disabled steps, and then use that for subsequent processing.
The text was updated successfully, but these errors were encountered:
Use cases include:
At the UI level this involves adding a toggle for a boolean value called, say,
disabled
to eachSpecStep
. This information would be added tospecSteps
via the update callback.At the business level, I think we would just need to filter
specSteps
at the top ofrunCallback
to return an array that only contains non-disabled steps, and then use that for subsequent processing.The text was updated successfully, but these errors were encountered: