(name: string)
| 15 | }; |
| 16 | |
| 17 | function makeSession(name: string): SessionState { |
| 18 | return { |
| 19 | name, |
| 20 | device: { |
| 21 | platform: 'apple', |
| 22 | id: 'sim-1', |
| 23 | name: 'iPhone', |
| 24 | kind: 'simulator', |
| 25 | booted: true, |
| 26 | }, |
| 27 | createdAt: Date.now(), |
| 28 | actions: [], |
| 29 | }; |
| 30 | } |
| 31 | |
| 32 | function isSessionScriptFile(file: string): boolean { |
| 33 | return file.endsWith('.ad'); |
no outgoing calls
no test coverage detected