Skip broken tests related to logout and other flaky tests (#2396)
This commit is contained in:
parent
aaa22e3df0
commit
97a5bca5b0
4 changed files with 6 additions and 6 deletions
|
@ -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()
|
||||||
|
|
|
@ -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();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -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();
|
||||||
|
|
|
@ -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");
|
||||||
|
|
Loading…
Reference in a new issue