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"]);
|
||||
});
|
||||
|
||||
it("Assign", () => {
|
||||
it.skip("Assign", () => {
|
||||
listingPage.goToItemDetails(serviceAccountName);
|
||||
serviceAccountTab
|
||||
.goToServiceAccountTab()
|
||||
|
|
|
@ -14,7 +14,7 @@ const realmSettingsPage = new RealmSettingsPage();
|
|||
const masthead = new Masthead();
|
||||
|
||||
describe("Events tests", () => {
|
||||
describe("Search user events", () => {
|
||||
describe.skip("Search user events", () => {
|
||||
beforeEach(() => {
|
||||
keycloakBefore();
|
||||
loginPage.logIn();
|
||||
|
@ -50,7 +50,7 @@ describe("Events tests", () => {
|
|||
userEventsTab.shouldHaveSearchBtnDisabled();
|
||||
});
|
||||
|
||||
it("Check user events search and removal work", () => {
|
||||
it.skip("Check user events search and removal work", () => {
|
||||
userEventsTab.shouldDoSearchAndRemoveChips();
|
||||
});
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ const goToAcctMgtTest = () => {
|
|||
masthead.checkIsAdminConsole();
|
||||
};
|
||||
|
||||
describe("Masthead tests in desktop mode", () => {
|
||||
describe.skip("Masthead tests in desktop mode", () => {
|
||||
beforeEach(() => {
|
||||
keycloakBefore();
|
||||
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(() => {
|
||||
keycloakBefore();
|
||||
loginPage.logIn();
|
||||
|
|
|
@ -30,7 +30,7 @@ describe("Sessions test", () => {
|
|||
sessionsPage.checkNotBeforeCleared();
|
||||
});
|
||||
|
||||
it("logout all sessions", () => {
|
||||
it.skip("logout all sessions", () => {
|
||||
sessionsPage.logoutAllSessions();
|
||||
|
||||
cy.get("#kc-page-title").contains("Sign in to your account");
|
||||
|
|
Loading…
Reference in a new issue