You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2017/07/07 08:38:15 UTC

svn commit: r1801127 - /myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/QUnitTests.java

Author: hnoeth
Date: Fri Jul  7 08:38:14 2017
New Revision: 1801127

URL: http://svn.apache.org/viewvc?rev=1801127&view=rev
Log:
fix tests
* add missing test; set on ignore list

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/QUnitTests.java

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/QUnitTests.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/QUnitTests.java?rev=1801127&r1=1801126&r2=1801127&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/QUnitTests.java (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/QUnitTests.java Fri Jul  7 08:38:14 2017
@@ -295,6 +295,8 @@ public class QUnitTests {
     ignore.add("content/40-test/3000-sheet/10-sheet-types/sheet-types.xhtml");
     // See https://issues.apache.org/jira/browse/TOBAGO-1752?focusedCommentId=16068289
     ignore.add("content/40-test/4000-button+link/button+link.xhtml");
+    // Works only for larger browser window
+    ignore.add("content/40-test/4810-labelLayoutTop/labelLayoutTop.xhtml");
     //ajaxListener doesn't work for <tc:in> events: focus, blur, click, dblclick
     ignore.add("content/40-test/6000-event/event.xhtml");
     return ignore;
@@ -468,6 +470,12 @@ public class QUnitTests {
     runStandardTest(page);
   }
 
+  @Test
+  public void testLabelLayoutTop() throws UnsupportedEncodingException, InterruptedException {
+    String page = "content/40-test/4810-labelLayoutTop/labelLayoutTop.xhtml";
+    runStandardTest(page);
+  }
+
   @Test
   public void testEvent() throws UnsupportedEncodingException, InterruptedException {
     String page = "content/40-test/6000-event/event.xhtml";