test(): move the tab view tests before frame tests (#5957)

This commit is contained in:
Martin Yankov
2018-06-15 19:29:08 +03:00
committed by Svetoslav
parent 69b3eb70d5
commit a75505fbc0

View File

@ -135,6 +135,9 @@ allTests["FLEXBOXLAYOUT"] = flexBoxLayoutTests;
import * as stylePropertiesTests from "./ui/styling/style-properties-tests"; import * as stylePropertiesTests from "./ui/styling/style-properties-tests";
allTests["STYLE-PROPERTIES"] = stylePropertiesTests; 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"; import * as frameTests from "./ui/frame/frame-tests";
allTests["FRAME"] = frameTests; allTests["FRAME"] = frameTests;
@ -168,9 +171,6 @@ allTests["TAB-VIEW"] = tabViewTests;
import * as tabViewNavigationTests from "./ui/tab-view/tab-view-navigation-tests"; import * as tabViewNavigationTests from "./ui/tab-view/tab-view-navigation-tests";
allTests["TAB-VIEW-NAVIGATION"] = tabViewNavigationTests; 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"; import * as imageTests from "./ui/image/image-tests";
allTests["IMAGE"] = imageTests; allTests["IMAGE"] = imageTests;