Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand Down Expand Up @@ -88,6 +89,7 @@ public void testSessionLogging() throws Exception {
* @see https://github.com/eclipse-ee4j/mojarra/issues/2952
*/
@Test
@Ignore("Tests events which are just encouraged and not mandated")
public void testFlowLogging() throws Exception {
// index.xhtml
HtmlPage page = webClient.getPage(webUrl);
Expand Down Expand Up @@ -122,6 +124,7 @@ public void testFlowLogging() throws Exception {
* @see https://github.com/eclipse-ee4j/mojarra/issues/2952
*/
@Test
@Ignore("Tests events which are just encouraged and not mandated")
public void testViewScopedLogging() throws Exception {
HtmlPage page = webClient.getPage(webUrl + "faces/viewScoped01.xhtml");
HtmlElement e = (HtmlElement) page.getElementById("initMessage");
Expand Down