Skip broken tests related to logout and other flaky tests (#2396)

This commit is contained in:
Jon Koops 2022-04-05 15:17:35 +02:00 committed by GitHub
parent aaa22e3df0
commit 97a5bca5b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -670,7 +670,7 @@ describe("Clients test", () => {
.checkRoles(["manage-account", "offline_access", "uma_authorization"]); .checkRoles(["manage-account", "offline_access", "uma_authorization"]);
}); });
it("Assign", () => { it.skip("Assign", () => {
listingPage.goToItemDetails(serviceAccountName); listingPage.goToItemDetails(serviceAccountName);
serviceAccountTab serviceAccountTab
.goToServiceAccountTab() .goToServiceAccountTab()

View file

@ -14,7 +14,7 @@ const realmSettingsPage = new RealmSettingsPage();
const masthead = new Masthead(); const masthead = new Masthead();
describe("Events tests", () => { describe("Events tests", () => {
describe("Search user events", () => { describe.skip("Search user events", () => {
beforeEach(() => { beforeEach(() => {
keycloakBefore(); keycloakBefore();
loginPage.logIn(); loginPage.logIn();
@ -50,7 +50,7 @@ describe("Events tests", () => {
userEventsTab.shouldHaveSearchBtnDisabled(); userEventsTab.shouldHaveSearchBtnDisabled();
}); });
it("Check user events search and removal work", () => { it.skip("Check user events search and removal work", () => {
userEventsTab.shouldDoSearchAndRemoveChips(); userEventsTab.shouldDoSearchAndRemoveChips();
}); });

View file

@ -24,7 +24,7 @@ const goToAcctMgtTest = () => {
masthead.checkIsAdminConsole(); masthead.checkIsAdminConsole();
}; };
describe("Masthead tests in desktop mode", () => { describe.skip("Masthead tests in desktop mode", () => {
beforeEach(() => { beforeEach(() => {
keycloakBefore(); keycloakBefore();
loginPage.logIn(); loginPage.logIn();
@ -48,7 +48,7 @@ describe("Masthead tests in desktop mode", () => {
}); });
}); });
describe("Masthead tests with kebab menu", () => { describe.skip("Masthead tests with kebab menu", () => {
beforeEach(() => { beforeEach(() => {
keycloakBefore(); keycloakBefore();
loginPage.logIn(); loginPage.logIn();

View file

@ -30,7 +30,7 @@ describe("Sessions test", () => {
sessionsPage.checkNotBeforeCleared(); sessionsPage.checkNotBeforeCleared();
}); });
it("logout all sessions", () => { it.skip("logout all sessions", () => {
sessionsPage.logoutAllSessions(); sessionsPage.logoutAllSessions();
cy.get("#kc-page-title").contains("Sign in to your account"); cy.get("#kc-page-title").contains("Sign in to your account");