()
| 5 | } from "../../../src/modals/taskModalActionButtons"; |
| 6 | |
| 7 | function createContext(): TaskModalActionButtonContext { |
| 8 | return { |
| 9 | translate: (key) => |
| 10 | ({ |
| 11 | "modals.task.buttons.save": "Save", |
| 12 | "common.cancel": "Cancel", |
| 13 | })[key] || key, |
| 14 | }; |
| 15 | } |
| 16 | |
| 17 | describe("taskModalActionButtons", () => { |
| 18 | beforeEach(() => { |
no outgoing calls
no test coverage detected