Skip to content
Snippets Groups Projects
Unverified Commit 3062cbb3 authored by Paul Rosenzweig's avatar Paul Rosenzweig Committed by GitHub
Browse files

unpending overworld cypress tests (#11501)

parent 07fa896d
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ describe("homepage", () => {
cy.request("PUT", "api/setting/show-homepage-data", { value: true });
cy.request("PUT", "api/setting/show-homepage-xrays", { value: true });
});
xit('should be possible for an admin to hide the "Our data" section', () => {
it('should be possible for an admin to hide the "Our data" section', () => {
cy.server();
cy.route("PUT", "**/show-homepage-data").as("hideData");
cy.visit("/");
......@@ -25,7 +25,7 @@ describe("homepage", () => {
cy.contains("Sample Dataset").should("have.length", 0);
// cleanup
});
xit('should be possible for an admin to hide the "xrays" section', () => {
it('should be possible for an admin to hide the "xrays" section', () => {
cy.server();
cy.route("PUT", "**/show-homepage-xrays").as("hideXrays");
cy.visit("/");
......@@ -38,7 +38,7 @@ describe("homepage", () => {
});
describe("as regular folk", () => {
beforeEach(signInAsNormalUser);
xit("should not be possible for them to see the controls", () => {
it("should not be possible for them to see the controls", () => {
cy.visit("/");
cy.contains("Our data")
.find(".Icon-close")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment