(topFrame?: Frame)
| 229 | } |
| 230 | |
| 231 | export function goBack(topFrame?: Frame) { |
| 232 | waitUntilNavigatedFrom(() => (topFrame ? topFrame.goBack() : Frame.topmost().goBack())); |
| 233 | } |
| 234 | |
| 235 | export function assertAreClose(actual: number, expected: number, message: string): void { |
| 236 | const density = Utils.layout.getDisplayDensity(); |
nothing calls this directly
no test coverage detected