(session: SessionState)
| 55 | } |
| 56 | |
| 57 | export async function stopSessionAndroidSnapshotHelper(session: SessionState): Promise<void> { |
| 58 | if (session.device.platform !== 'android') return; |
| 59 | await stopAndroidSnapshotHelperSessionForDevice(session.device); |
| 60 | } |
| 61 | |
| 62 | export async function teardownSessionResources( |
| 63 | session: SessionState, |
no test coverage detected