diff --git a/tests/unit/project-sequencer-pane.test.tsx b/tests/unit/project-sequencer-pane.test.tsx index 49bd45ff..24a231d8 100644 --- a/tests/unit/project-sequencer-pane.test.tsx +++ b/tests/unit/project-sequencer-pane.test.tsx @@ -12,6 +12,7 @@ import { createEmptyProjectScheduler, createProjectScheduleRoutine } from "../../src/scheduler/project-scheduler"; +import type { ProjectScheduleTargetOption } from "../../src/scheduler/project-schedule-control-options"; import { createEmptyProjectSequenceLibrary } from "../../src/sequencer/project-sequences"; describe("ProjectSequencerPane", () => { @@ -24,16 +25,7 @@ describe("ProjectSequencerPane", () => { onSetRoutineEndHour = vi.fn() }: { scheduler?: ReturnType; - targetOptions: Array<{ - key: string; - target: ReturnType< - typeof createProjectGlobalControlTargetRef | typeof createActorControlTargetRef - >; - label: string; - subtitle: string; - groupLabel: string; - defaults: Record; - }>; + targetOptions: ProjectScheduleTargetOption[]; selectedRoutineId?: string | null; onSetRoutineTarget?: ReturnType; onSetRoutineStartHour?: ReturnType;