()
| 13 | import type { SessionAction, SessionState } from '../../daemon/types.ts'; |
| 14 | |
| 15 | function makeSession(): SessionState { |
| 16 | return { |
| 17 | name: 'default', |
| 18 | device: { |
| 19 | platform: 'android', |
| 20 | id: 'emulator-5554', |
| 21 | name: 'Pixel', |
| 22 | kind: 'emulator', |
| 23 | booted: true, |
| 24 | }, |
| 25 | createdAt: Date.now(), |
| 26 | actions: [], |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | test('writeReplayScript preserves inline open runtime hints', () => { |
| 31 | const root = fs.mkdtempSync(path.join(os.tmpdir(), 'agent-device-replay-script-open-')); |
no outgoing calls
no test coverage detected
searching dependent graphs…