(overrides: Partial<InputParam>)
| 63 | } |
| 64 | |
| 65 | const makeParam = (overrides: Partial<InputParam>): InputParam => ({ |
| 66 | id: 'p1', |
| 67 | name: 'myField', |
| 68 | label: 'My Field', |
| 69 | type: 'string', |
| 70 | optional: false, |
| 71 | additionalParams: true, |
| 72 | ...overrides |
| 73 | }) |
| 74 | |
| 75 | beforeEach(() => { |
| 76 | jest.clearAllMocks() |
no outgoing calls
no test coverage detected