You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2021/11/04 16:20:01 UTC

[royale-asjs] 01/01: For whatever reason having a label in the application helps some of the tests run. This should not be merged to develop.

This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch text_mxtests
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit de416ac60348c7a178153ef5d97e13df83aa8765
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Thu Nov 4 18:18:50 2021 +0200

    For whatever reason having a label in the application helps some of the tests run. This should not be merged to develop.
---
 mustella/tests/mxtests/basicTests/BasicTests.mxml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/mustella/tests/mxtests/basicTests/BasicTests.mxml b/mustella/tests/mxtests/basicTests/BasicTests.mxml
index ec5ac1f..e2d71dc 100644
--- a/mustella/tests/mxtests/basicTests/BasicTests.mxml
+++ b/mustella/tests/mxtests/basicTests/BasicTests.mxml
@@ -24,6 +24,7 @@ preloader="BasicTestsPreloader"
 -->
 <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
     xmlns:mx="library://ns.apache.org/royale/mx"
+    xmlns:s="library://ns.apache.org/royale/spark"
     xmlns:haloviews="halo.views.*"
     xmlns:sparkviews="spark.views.*"
     height="800" width="1000"
@@ -211,4 +212,10 @@ preloader="BasicTestsPreloader"
         <mx:TextInput id="newStateInput" text="" enter="{currentState=newStateInput.text}" />
     </s:Group>    
     -->    
+<s:Group>
+        <s:layout>
+            <s:HorizontalLayout paddingTop="680" />
+        </s:layout>
+        <mx:Label text="This is a hack to run tests with ChildResize" />
+    </s:Group>
 </mx:Application>