()
| 5093 | } |
| 5094 | |
| 5095 | async function waitForResume() { |
| 5096 | throwIfStopped(); |
| 5097 | const state = await getState(); |
| 5098 | if (state.email) { |
| 5099 | await addLog('邮箱已就绪,自动继续后续步骤...', 'info'); |
| 5100 | return; |
| 5101 | } |
| 5102 | |
| 5103 | return new Promise((resolve, reject) => { |
| 5104 | resumeWaiter = { resolve, reject }; |
| 5105 | }); |
| 5106 | } |
| 5107 | |
| 5108 | function createAutoRunRoundSummary(round) { |
| 5109 | return autoRunController.createAutoRunRoundSummary(round); |
no test coverage detected