(backend: SnapshotBackend | undefined)
| 90 | } |
| 91 | |
| 92 | export function usesMobileSnapshotPresentation(backend: SnapshotBackend | undefined): boolean { |
| 93 | return backend === undefined || backend === 'xctest' || backend === 'android'; |
| 94 | } |
| 95 | |
| 96 | export type SnapshotState = { |
| 97 | nodes: SnapshotNode[]; |
no outgoing calls
no test coverage detected