(moduleName, context, testFunction)
| 149 | } |
| 150 | |
| 151 | export function navigateToModuleAndRunTest(moduleName, context, testFunction) { |
| 152 | let page = navigateToModule(moduleName, context); |
| 153 | testFunction(page); |
| 154 | } |
| 155 | |
| 156 | export function navigate(pageFactory: () => Page, navigationContext?: any): Page { |
| 157 | let entry: NavigationEntry = { create: pageFactory, animated: false, context: navigationContext, clearHistory: true }; |
nothing calls this directly
no test coverage detected