added sketch overlay tests

This commit is contained in:
Vojtěch Fošnár 2023-01-11 22:46:03 +01:00
parent 63a0c1e2b1
commit 11bc734586
No known key found for this signature in database
GPG key ID: 657727E71C40859A

View file

@ -275,6 +275,26 @@ shipments.order_id <-> orders.id`,
+getJobs(): "Job[]"
+setTimeout(seconds int)
}
`,
},
{
name: "bright_overlay",
script: `a.style.fill = "#fff"
`,
},
{
name: "normal_overlay",
script: `a.style.fill = "#ccc"
`,
},
{
name: "dark_overlay",
script: `a.style.fill = "#555"
`,
},
{
name: "darker_overlay",
script: `a.style.fill = "#000"
`,
},
}