(overrides: Partial<BeResult> = {})
| 703 | } |
| 704 | |
| 705 | function makeBeResult(overrides: Partial<BeResult> = {}): BeResult { |
| 706 | return { |
| 707 | testId: 'test_xyz', |
| 708 | status: 'passed', |
| 709 | startedAt: '2026-05-15T10:00:01.000Z', |
| 710 | finishedAt: '2026-05-15T10:00:30.000Z', |
| 711 | videoUrl: null, |
| 712 | failureAnalysisUrl: null, |
| 713 | snapshotId: 'snap_1', |
| 714 | runIdIfAvailable: 'run_abc', |
| 715 | codeVersion: 'v1', |
| 716 | targetUrl: 'https://example.com', |
| 717 | failedStepIndex: null, |
| 718 | failureKind: null, |
| 719 | summary: { passed: 1, failed: 0, skipped: 0 }, |
| 720 | ...overrides, |
| 721 | }; |
| 722 | } |
| 723 | |
| 724 | function beWaitRouter(args: { |
| 725 | type?: string; |
no outgoing calls
no test coverage detected