Skip to content
Merged
Show file tree
Hide file tree
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 @@ -40,13 +40,15 @@
import com.microsoft.identity.labapi.utilities.constants.TempUserType;
import com.microsoft.identity.labapi.utilities.constants.UserType;

import org.junit.Ignore;
import org.junit.Test;

import java.util.Arrays;

// [Joined][MSAL] Broker Auth - Federated User
// https://identitydivision.visualstudio.com/Engineering/_workitems/edit/1561147
@RetryOnFailure(retryCount = 2)
@Ignore("Federated Account in LAB is not working at the moment")
public class TestCase1561147 extends AbstractMsalBrokerTest {
@Test
public void test_1561147_Joined_FederatedUser() throws Throwable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,15 @@
import com.microsoft.identity.labapi.utilities.constants.TempUserType;
import com.microsoft.identity.labapi.utilities.constants.UserType;

import org.junit.Ignore;
import org.junit.Test;

import java.util.Arrays;

// [MSAL] Broker Auth for Non-Joined Account (Federated User)
// https://identitydivision.visualstudio.com/DevEx/_workitems/edit/833553
@RetryOnFailure()
@Ignore("Federated Account in LAB is not working at the moment")
public class TestCase833553 extends AbstractMsalBrokerTest {
@Test
public void test_833553_NonJoined_Federated() throws Throwable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
import com.microsoft.identity.labapi.utilities.constants.TempUserType;
import com.microsoft.identity.labapi.utilities.constants.UserType;

import org.junit.Ignore;
import org.junit.Test;

import java.util.Arrays;
Expand All @@ -57,6 +58,7 @@
// Adding a retry on failure, sometimes arlington login page fails to load
@RetryOnFailure(retryCount = 2)
@RunOnAPI29Minus("Speed Bump Page")
@Ignore("Federated Account in LAB is not working at the moment")
public class TestCase938368 extends AbstractMsalUiTest {

@Test
Expand Down
Loading