Skip to content

Commit 16e5435

Browse files
committed
Disable tests failing for server-side reasons
1 parent e36facd commit 16e5435

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/AuthorizationCodeIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ public void acquireTokenWithAuthorizationCode_ManagedUser() {
4545
assertAcquireTokenAAD(user, app.getAppId(), null);
4646
}
4747

48-
@Test
48+
//Temporarily disabling: no change in the library, but started seeing "The service has encountered an internal error. Please reauthenticate and try again."
49+
//Needs investigation, tracked in https://github.com/AzureAD/microsoft-authentication-library-for-java/issues/1023
50+
//@Test
4951
public void acquireTokenWithAuthorizationCode_B2C_Local() {
5052
UserConfig user = LabResponseHelper.getUserConfig(USER_B2C);
5153
assertAcquireTokenB2C(user);

msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/DeviceCodeIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ void setUp() {
2929
seleniumDriver = SeleniumExtensions.createDefaultWebDriver();
3030
}
3131

32-
@Test
32+
//Temporarily disabling: timeout occuring after 15 minutes, likely either a server-side issue or a UI change
33+
//Needs investigation, tracked in https://github.com/AzureAD/microsoft-authentication-library-for-java/issues/1023
34+
//@Test
3335
void DeviceCodeFlowADTest() throws Exception {
3436
AppConfig app = LabResponseHelper.getAppConfig(APP_PCACLIENT);
3537
UserConfig user = LabResponseHelper.getUserConfig(USER_PUBLIC_CLOUD);

0 commit comments

Comments
 (0)