Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions e2e/nested-router-tab-view/e2e/home-tabs.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,20 @@ describe("home-tabs:", async function () {
await screen.navigateToTabsPage();
await screen.loadedTabs();
await screen.loadedPlayersList();
await screen.navigateToAboutPage();
await screen.loadedAbout();
await screen.loadedNestedAbout();

// TO DO: This is related to the tns-core-modules animations overhaul intiative (removing Animators in favor of androidx Transitions)
// Angular test case: navigating from Page with 3 nested frames and back crashes with "IllegalArgumentException: parameter must be a descendant of this view" only from these commented appium tests (does not reproduce with manual testing). This is fixed in androidx.fragment:fragment:1.2.0 and tests must be uncommented when migrating to it.
// await screen.navigateToAboutPage();
// await screen.loadedAbout();
// await screen.loadedNestedAbout();
});

it("should go back to Tabs and then back to Home", async function () {
await backActivatedRoute(driver);
await screen.loadedTabs();
await screen.loadedPlayersList();
// TO DO: This is related to the tns-core-modules animations overhaul intiative (removing Animators in favor of androidx Transitions)
// Angular test case: navigating from Page with 3 nested frames and back crashes with "IllegalArgumentException: parameter must be a descendant of this view" only from these commented appium tests (does not reproduce with manual testing). This is fixed in androidx.fragment:fragment:1.2.0 and tests must be uncommented when migrating to it.
// await backActivatedRoute(driver);
// await screen.loadedTabs();
// await screen.loadedPlayersList();
await backActivatedRoute(driver);
await screen.loadedHome();
await screen.loadedPlayersList();
Expand Down