Update test assertion for project sequence steps

This commit is contained in:
2026-04-14 23:21:05 +02:00
parent 37072be614
commit 538c5d6750

View File

@@ -135,8 +135,15 @@ describe("project sequence steps", () => {
})
}
]);
expect(getProjectScheduleRoutineSequenceSteps(lightRoutine)).toEqual(
getInteractionLinkSequenceSteps(directControlLink)
);
expect(getProjectScheduleRoutineSequenceSteps(lightRoutine)).toEqual([
{
stepClass: "held",
type: "controlEffect",
effect: createSetLightEnabledControlEffect({
target: lightTarget,
enabled: false
})
}
]);
});
});