Skip tests that are constantly flaky (#2487)
This commit is contained in:
parent
2134f5c0c5
commit
1cde058015
1 changed files with 3 additions and 3 deletions
|
@ -251,7 +251,7 @@ describe("Realm roles test", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
const keyValue = new KeyValueInput("attributes");
|
const keyValue = new KeyValueInput("attributes");
|
||||||
it("should add attribute", () => {
|
it.skip("should add attribute", () => {
|
||||||
listingPage.itemExist(editRoleName).goToItemDetails(editRoleName);
|
listingPage.itemExist(editRoleName).goToItemDetails(editRoleName);
|
||||||
|
|
||||||
createRealmRolePage.goToAttributesTab();
|
createRealmRolePage.goToAttributesTab();
|
||||||
|
@ -261,7 +261,7 @@ describe("Realm roles test", () => {
|
||||||
keyValue.validateRows(1);
|
keyValue.validateRows(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should add attribute multiple", () => {
|
it.skip("should add attribute multiple", () => {
|
||||||
listingPage.itemExist(editRoleName).goToItemDetails(editRoleName);
|
listingPage.itemExist(editRoleName).goToItemDetails(editRoleName);
|
||||||
|
|
||||||
createRealmRolePage.goToAttributesTab();
|
createRealmRolePage.goToAttributesTab();
|
||||||
|
@ -272,7 +272,7 @@ describe("Realm roles test", () => {
|
||||||
.validateRows(3);
|
.validateRows(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should delete attribute", () => {
|
it.skip("should delete attribute", () => {
|
||||||
listingPage.itemExist(editRoleName).goToItemDetails(editRoleName);
|
listingPage.itemExist(editRoleName).goToItemDetails(editRoleName);
|
||||||
createRealmRolePage.goToAttributesTab();
|
createRealmRolePage.goToAttributesTab();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue