Skip to content

Commit

Permalink
test: change address for cypress test to see if it fixes github tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rajohnson90 committed Jan 23, 2025
1 parent 499d00b commit 77590f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/cypress/e2e/canDetail.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ describe("CAN detail page", () => {
.and("contain", "60%");
});
it("handles budget form", () => {
cy.visit(`/cans/${can504.number}/funding`);
cy.visit(`/cans/504/funding`);
cy.get("#fiscal-year-select").select(currentFiscalYear);
cy.get("#edit").click();
cy.get("#carry-forward-card").should("contain", "$ 10,000,000.00");
Expand All @@ -198,6 +198,7 @@ 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 77590f8

Please sign in to comment.