Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UI Tests] - Re-enable all disabled login tests #17297

Merged
merged 2 commits into from
Oct 12, 2022
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 @@ -2,7 +2,6 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.wordpress.android.e2e.flows.LoginFlow;
import org.wordpress.android.support.BaseTest;
Expand All @@ -24,7 +23,6 @@ public void setUp() {
logoutIfNecessary();
}

@Ignore("Ignored temporarily. This sometimes fail on CI while running with whole test suite.")
@Test
public void e2eLoginWithEmailPassword() {
new LoginFlow().chooseContinueWithWpCom()
Expand All @@ -33,7 +31,6 @@ public void e2eLoginWithEmailPassword() {
.confirmLogin(false);
}

@Ignore("Ignored temporarily. This sometimes fail on CI while running with whole test suite.")
@Test
public void e2eLoginWithPasswordlessAccount() {
new LoginFlow().chooseContinueWithWpCom()
Expand All @@ -51,7 +48,6 @@ public void e2eLoginWithSiteAddress() {
.confirmLogin(false);
}

@Ignore("Ignored temporarily. This sometimes fail on CI while running with whole test suite.")
@Test
public void e2eLoginWithMagicLink() {
new LoginFlow().chooseContinueWithWpCom()
Expand Down