diff --git a/tests/app/testRunner.ts b/tests/app/testRunner.ts index 6f8167b1e..4988877e4 100644 --- a/tests/app/testRunner.ts +++ b/tests/app/testRunner.ts @@ -346,7 +346,10 @@ function printRunTestStats() { messageContainer.focus(); page.style.fontSize = 11; if (page.android) { - setTimeout(() => messageContainer.dismissSoftInput()); + setTimeout(() => { + messageContainer.dismissSoftInput(); + (messageContainer.nativeView).scrollTo(0, 0); + }); } } diff --git a/tests/app/ui/core/bindable/bindable-tests.ts b/tests/app/ui/core/bindable/bindable-tests.ts index 7ebb0285e..560a6b4cd 100644 --- a/tests/app/ui/core/bindable/bindable-tests.ts +++ b/tests/app/ui/core/bindable/bindable-tests.ts @@ -604,7 +604,7 @@ export function test_BindingToDictionaryAtAppLevel() { pageViewModel.set("testProperty", testPropertyName); const dict = {}; dict[testPropertyName] = expectedValue; - appModule.resources["dict"] = dict; + appModule.getResources()["dict"] = dict; const testFunc = function (views: Array) { const testLabel =