(tasks: TaskInfo[])
| 15 | } |
| 16 | |
| 17 | function pluginWithTasks(tasks: TaskInfo[]): any { |
| 18 | return { |
| 19 | cacheManager: { |
| 20 | getAllTasks: jest.fn(async () => tasks), |
| 21 | }, |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | describe("openTaskModalTaskSelector", () => { |
| 26 | it("opens the task selector with filtered candidates and ignores cancellation", async () => { |
no outgoing calls
no test coverage detected