From a75505fbc0a7b118a069c077b80a3fd7a25549d1 Mon Sep 17 00:00:00 2001 From: Martin Yankov Date: Fri, 15 Jun 2018 19:29:08 +0300 Subject: [PATCH] test(): move the tab view tests before frame tests (#5957) --- tests/app/testRunner.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/app/testRunner.ts b/tests/app/testRunner.ts index cd8b79395..09ae26feb 100644 --- a/tests/app/testRunner.ts +++ b/tests/app/testRunner.ts @@ -135,6 +135,9 @@ allTests["FLEXBOXLAYOUT"] = flexBoxLayoutTests; import * as stylePropertiesTests from "./ui/styling/style-properties-tests"; allTests["STYLE-PROPERTIES"] = stylePropertiesTests; +import * as tabViewRootTests from "./ui/tab-view/tab-view-root-tests"; +allTests["TAB-VIEW-ROOT"] = tabViewRootTests; + import * as frameTests from "./ui/frame/frame-tests"; allTests["FRAME"] = frameTests; @@ -168,9 +171,6 @@ allTests["TAB-VIEW"] = tabViewTests; import * as tabViewNavigationTests from "./ui/tab-view/tab-view-navigation-tests"; allTests["TAB-VIEW-NAVIGATION"] = tabViewNavigationTests; -import * as tabViewRootTests from "./ui/tab-view/tab-view-root-tests"; -allTests["TAB-VIEW-ROOT"] = tabViewRootTests; - import * as imageTests from "./ui/image/image-tests"; allTests["IMAGE"] = imageTests;