Skip to content

Commit bc9dd3e

Browse files
authored
Disable tests using B2C AAD client app registration (AzureAD#7493)
1 parent cc2bdb2 commit bc9dd3e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

samples/msal-browser-samples/VanillaJSTestApp2.0/app/customizable-e2e-test/test/browserB2C.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ describe("B2C Tests", () => {
5656
await browser.close();
5757
});
5858

59-
describe("AAD Account", () => {
59+
// TODO: Unskip when AAD client app registration is updated
60+
describe.skip("AAD Account", () => {
6061
beforeAll(async () => {
6162
const labApiParams: LabApiQueryParams = {
6263
azureEnvironment: AzureEnvironments.CLOUD,

samples/msal-node-samples/auth-code/test/auth-code-b2c-aad.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const cachePlugin = require("../../cachePlugin.js")(TEST_CACHE_LOCATION);
3434
// Load scenario configuration
3535
const config = require("../config/B2C-AAD.json");
3636

37-
describe("Auth Code B2C Tests (aad account)", () => {
37+
describe.skip("Auth Code B2C Tests (aad account)", () => {
3838
jest.retryTimes(RETRY_TIMES);
3939
jest.setTimeout(45000);
4040
let browser: puppeteer.Browser;

samples/msal-node-samples/silent-flow/test/silent-flow-b2c-aad.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const cachePlugin = require("../../cachePlugin.js")(TEST_CACHE_LOCATION);
3737
// Load scenario configuration
3838
const config = require("../config/B2C-AAD.json");
3939

40-
describe("Silent Flow B2C Tests (aad account)", () => {
40+
describe.skip("Silent Flow B2C Tests (aad account)", () => {
4141
jest.retryTimes(RETRY_TIMES);
4242
jest.setTimeout(ONE_SECOND_IN_MS * 45);
4343
let browser: puppeteer.Browser;

0 commit comments

Comments
 (0)