diff --git a/tests/app/ui/helper.ts b/tests/app/ui/helper.ts index f99c0dccf..5d3c4ff81 100644 --- a/tests/app/ui/helper.ts +++ b/tests/app/ui/helper.ts @@ -99,12 +99,17 @@ export function buildUIAndRunTest(controlToTest: T, testFunction newPage.css = options.pageCss; } + newPage.actionBarHidden = true; + newPage.actionBar.flat = false; + if (options.actionBar) { - newPage.actionBar.title = "Test"; + newPage.actionBarHidden = false; + newPage.actionBar.title = "Test ActionBar"; } if (options.actionBarFlat) { - newPage.actionBar.title = "Test"; + newPage.actionBarHidden = false; + newPage.actionBar.title = "Test ActionBar Flat"; newPage.actionBar.flat = true; }