Skip to content

Commit

Permalink
[java] remove ignore annotation from tests that do not inherit from b…
Browse files Browse the repository at this point in the history
…ase test class
  • Loading branch information
titusfortner committed Oct 17, 2023
1 parent c991104 commit 7e0f0c1
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.junit.Ignore;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WindowType;
Expand Down Expand Up @@ -125,7 +125,7 @@ void canListenToBrowsingContextLoadedEvent()
}

@Test
@Ignore
@Disabled
void canListenToNavigationStartedEvent()
throws ExecutionException, InterruptedException, TimeoutException {
try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) {
Expand All @@ -142,7 +142,7 @@ void canListenToNavigationStartedEvent()
}

@Test
@Ignore
@Disabled
void canListenToFragmentNavigatedEvent()
throws ExecutionException, InterruptedException, TimeoutException {
try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) {
Expand All @@ -163,7 +163,7 @@ void canListenToFragmentNavigatedEvent()
}

@Test
@Ignore
@Disabled
void canListenToUserPromptOpenedEvent()
throws ExecutionException, InterruptedException, TimeoutException {
try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) {
Expand All @@ -183,7 +183,7 @@ void canListenToUserPromptOpenedEvent()
}

@Test
@Ignore
@Disabled
void canListenToUserPromptClosedEvent()
throws ExecutionException, InterruptedException, TimeoutException {
try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) {
Expand Down

0 comments on commit 7e0f0c1

Please sign in to comment.