chore(bubbles): ✅ Add e2e tests
This commit is contained in:
@ -83,5 +83,5 @@ const blockContainsInput = (
|
||||
stepIsInput(typebot.steps.byId[stepId])
|
||||
)
|
||||
|
||||
const stepIsInput = (step: Step): step is InputStep =>
|
||||
export const stepIsInput = (step: Step): step is InputStep =>
|
||||
step.type === StepType.TEXT_INPUT
|
||||
|
@ -211,3 +211,6 @@ export const parseNewTypebot = ({
|
||||
settings,
|
||||
}
|
||||
}
|
||||
|
||||
export const isStepText = (step: Step): step is TextStep =>
|
||||
step.type === StepType.TEXT
|
||||
|
Reference in New Issue
Block a user