(value: string, weight: number)
| 20 | } |
| 21 | |
| 22 | function priority(value: string, weight: number): PriorityConfig { |
| 23 | return { |
| 24 | id: value, |
| 25 | value, |
| 26 | label: value, |
| 27 | color: "", |
| 28 | weight, |
| 29 | }; |
| 30 | } |
| 31 | |
| 32 | describe("taskModalActionValues", () => { |
| 33 | it("derives default status and priority from configured ordering", () => { |
no outgoing calls
no test coverage detected