temp rm cleanup

This commit is contained in:
mfrances 2021-05-07 15:56:44 -04:00
parent 23d2d6b123
commit 12d3661383

View file

@ -113,23 +113,23 @@ describe("Identity provider test", () => {
);
});
it("clean up providers", () => {
const modalUtils = new ModalUtils();
listingPage.deleteItem("bitbucket");
modalUtils.checkModalTitle("Delete provider?").confirmModal();
masthead.checkNotificationMessage("Provider successfully deleted");
// it("clean up providers", () => {
// const modalUtils = new ModalUtils();
// listingPage.deleteItem("bitbucket");
// modalUtils.checkModalTitle("Delete provider?").confirmModal();
// masthead.checkNotificationMessage("Provider successfully deleted");
listingPage.deleteItem("facebook");
modalUtils.checkModalTitle("Delete provider?").confirmModal();
masthead.checkNotificationMessage("Provider successfully deleted");
// listingPage.deleteItem("facebook");
// modalUtils.checkModalTitle("Delete provider?").confirmModal();
// masthead.checkNotificationMessage("Provider successfully deleted");
listingPage.deleteItem("github");
modalUtils.checkModalTitle("Delete provider?").confirmModal();
masthead.checkNotificationMessage("Provider successfully deleted");
// listingPage.deleteItem("github");
// modalUtils.checkModalTitle("Delete provider?").confirmModal();
// masthead.checkNotificationMessage("Provider successfully deleted");
listingPage.deleteItem("oidc");
modalUtils.checkModalTitle("Delete provider?").confirmModal();
masthead.checkNotificationMessage("Provider successfully deleted");
});
// listingPage.deleteItem("oidc");
// modalUtils.checkModalTitle("Delete provider?").confirmModal();
// masthead.checkNotificationMessage("Provider successfully deleted");
// });
});
});