(emit: (fragment: AnyFragment) => void = () => {})
| 5 | import type { AnyFragment } from '../../types/domain-fragments.ts'; |
| 6 | |
| 7 | function startPipeline(emit: (fragment: AnyFragment) => void = () => {}): StartedPipeline { |
| 8 | const pipeline = createXcodebuildPipeline({ |
| 9 | operation: 'BUILD', |
| 10 | toolName: 'build_run_macos', |
| 11 | params: { scheme: 'MyApp' }, |
| 12 | emit, |
| 13 | }); |
| 14 | return { pipeline, startedAt: Date.now() }; |
| 15 | } |
| 16 | |
| 17 | describe('xcodebuild-output', () => { |
| 18 | it('does not emit fallback events (fallback is handled by domain result creators)', () => { |
no test coverage detected