Skip to content

Commit

Permalink
Merge pull request #17 from PRX/fix/episode_planner_draft_fix
Browse files Browse the repository at this point in the history
Fix variable test
  • Loading branch information
radical-ube authored Jul 2, 2024
2 parents 3200b96 + b389285 commit f0b7210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/feeder-episode-planner.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ describe("Feeder Episode Planner", () => {
cy.get(".prx-badge-incomplete").should("have.length", 10);
cy.contains("a", "Plan Episodes").click();
cy.get("td[class*='bg-warning']").should("have.length", 10);
cy.get("#selected_days").select("Sunday", { force: true });
cy.get("#selected_days").select(["Sunday", "Monday"], { force: true });
cy.get("#selected_weeks").select("First Week", { force: true });
cy.get("td[class*='bg-danger']").should("have.length", 5);
cy.get("td[class*='bg-danger']").should("have.length", 10);

// go back to podcast settings and delete
cy.contains("a", "Settings").click({ force: true });
Expand Down

0 comments on commit f0b7210

Please sign in to comment.