(params: { input: string })
| 22 | describe('runComponentInline', () => { |
| 23 | it('should execute component inline', async () => { |
| 24 | const execute = async (params: { input: string }) => ({ |
| 25 | output: params.input.toUpperCase(), |
| 26 | }); |
| 27 | |
| 28 | const context = createExecutionContext({ |
| 29 | runId: 'test-run', |
no outgoing calls
no test coverage detected