Skip to content

Commit

Permalink
test: removing potentially unneeded line from cypress test
Browse files Browse the repository at this point in the history
  • Loading branch information
rajohnson90 committed Jan 23, 2025
1 parent 77590f8 commit 7c61620
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/cypress/e2e/canDetail.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ describe("CAN detail page", () => {
.and("contain", "60%");
});
it("handles budget form", () => {
cy.visit(`/cans/504/funding`);
cy.get("#fiscal-year-select").select(currentFiscalYear);
cy.visit(`/cans/${can504.number}/funding`);
cy.get("#edit").click();
cy.get("#carry-forward-card").should("contain", "$ 10,000,000.00");
cy.get("#save-changes").should("be.disabled");
Expand All @@ -198,7 +197,6 @@ describe("CAN detail page", () => {
.and("contain", "$5,000,000.00");
});
it("handle funding received form", () => {
cy.log(`/cans/${can504.number}/funding`);
cy.visit(`/cans/${can504.number}/funding`);
cy.get("#fiscal-year-select").select(currentFiscalYear);
cy.get("#edit").click();
Expand Down

0 comments on commit 7c61620

Please sign in to comment.