feat(canvas): allow mixer renders and improve edge insert visibility

This commit is contained in:
2026-04-11 10:31:51 +02:00
parent ae2fa1d269
commit cda97f614b
4 changed files with 72 additions and 4 deletions

View File

@@ -132,6 +132,16 @@ describe("canvas connection policy", () => {
).toBeNull();
});
it("allows mixer as render source", () => {
expect(
validateCanvasConnectionPolicy({
sourceType: "mixer",
targetType: "render",
targetIncomingCount: 0,
}),
).toBeNull();
});
it("describes unsupported crop source message", () => {
expect(getCanvasConnectionValidationMessage("crop-source-invalid")).toBe(
"Crop akzeptiert nur Bild-, Asset-, KI-Bild-, Video-, KI-Video-, Crop- oder Adjustment-Input.",