(command, _logPrefix, _useShell, opts)
| 138 | const emitted: AnyFragment[] = []; |
| 139 | const actions: string[] = []; |
| 140 | const executor: CommandExecutor = async (command, _logPrefix, _useShell, opts) => { |
| 141 | const action = command.at(-1); |
| 142 | if (action) { |
| 143 | actions.push(action); |
| 144 | } |
| 145 | |
| 146 | if (action === 'build-for-testing') { |
| 147 | opts?.onStdout?.('Ld /tmp/Weather.build/Weather normal arm64\n'); |
| 148 | } |
| 149 | |
| 150 | return createSuccessfulCommandResponse(); |
| 151 | }; |
| 152 | |
| 153 | const executeTest = createTestExecutor(executor, { |
| 154 | preflight: createPreflight(), |
no test coverage detected