()
| 10 | } = deps; |
| 11 | |
| 12 | async function executeStep5() { |
| 13 | const { firstName, lastName } = generateRandomName(); |
| 14 | const { year, month, day } = generateRandomBirthday(); |
| 15 | |
| 16 | await addLog(`步骤 5:已生成姓名 ${firstName} ${lastName},生日 ${year}-${month}-${day}`); |
| 17 | |
| 18 | await sendToContentScript('signup-page', { |
| 19 | type: 'EXECUTE_STEP', |
| 20 | step: 5, |
| 21 | source: 'background', |
| 22 | payload: { firstName, lastName, year, month, day }, |
| 23 | }); |
| 24 | } |
| 25 | |
| 26 | return { executeStep5 }; |
| 27 | } |
nothing calls this directly
no test coverage detected