move safe area tests to a new category

This commit is contained in:
Martin Yankov
2018-09-10 16:53:52 +03:00
parent 16a131f040
commit c9f8de9d7c
3 changed files with 194 additions and 165 deletions

View File

@@ -135,6 +135,11 @@ allTests["STACKLAYOUT"] = stackLayoutTests;
import * as flexBoxLayoutTests from "./ui/layouts/flexbox-layout-tests";
allTests["FLEXBOXLAYOUT"] = flexBoxLayoutTests;
import * as safeAreaLayoutTests from "./ui/layouts/safe-area-tests";
if (platform.device.os === platform.platformNames.ios) {
allTests["SAFEAREALAYOUT"] = safeAreaLayoutTests;
}
import * as stylePropertiesTests from "./ui/styling/style-properties-tests";
allTests["STYLE-PROPERTIES"] = stylePropertiesTests;