Skip to content

Commit d97be0e

Browse files
authored
skip test and fix redis regex (#2491)
1 parent bd58c5d commit d97be0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

e2e-tests/playwright/e2e/authProviders/microsoft-provider.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ test.describe("Standard authentication providers: Micorsoft Azure EntraID", () =
298298
});
299299
});
300300

301-
test("Move a user to another group in Microsoft EntraID", async () => {
301+
test.skip("Move a user to another group in Microsoft EntraID", async () => {
302302
test.setTimeout(300 * 1000);
303303
// move a user to another group -> user can still login
304304
// move user_2 to location_admin

e2e-tests/playwright/e2e/verify-redis-cache.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ test.describe("Verify Redis Cache DB", () => {
6060
// Additionally, verify the format of the key
6161
const key = keys.filter((k) => k.startsWith("techdocs"))[0];
6262
expect(key).toMatch(
63-
/techdocs:(?:[A-Za-z0-9+]{4})*(?:[A-Za-z0-9+]{2}==|[A-Za-z0-9+]{3}=)$/gm,
63+
/(?:techdocs|bulk-import):(?:[A-Za-z0-9+]{4})*(?:[A-Za-z0-9+]{2}==|[A-Za-z0-9+]{3}=)$/gm,
6464
);
6565
}).toPass({
6666
intervals: [3_000],

0 commit comments

Comments
 (0)