Skip to content

Commit

Permalink
Upgrade to [email protected], [email protected], prettier@3.…
Browse files Browse the repository at this point in the history
  • Loading branch information
scottohara committed Dec 3, 2024
1 parent 6f07928 commit 0aadb58
Show file tree
Hide file tree
Showing 28 changed files with 517 additions and 249 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/accounts/index.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ describe("Account Index", (): void => {
beforeEach((): void => {
view = transactionsTable;
heading = transactionsIndexHeading;
url = /#!\/accounts\/\d+\/transactions/u;
url = /#!\/accounts\/\d+\/transactions/v;
});

it("should display the Account Transactions view when the account name is clicked", (): void => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/categories/index.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe("Category Index", (): void => {
headingText: "Category 22",
headingText2: " Transactions",
view: transactionsTable,
url: /#!\/categories\/\d+\/transactions/u,
url: /#!\/categories\/\d+\/transactions/v,
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/payees/index.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe("Payee Index", (): void => {
headingText: "Payee 9",
headingText2: " Transactions",
view: transactionsTable,
url: /#!\/payees\/\d+\/transactions/u,
url: /#!\/payees\/\d+\/transactions/v,
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/securities/delete.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe("Security Delete", (): void => {
it("should display the details of the security being deleted", (): void => {
cy.get(securityToDeleteName).should(
"have.text",
lastSecurity.name.replace(/\s+No transactions/u, ""),
lastSecurity.name.replace(/\s+No transactions/v, ""),
);
cy.get(securityToDeleteCode).should("have.text", lastSecurity.code);
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/securities/index.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe("Security Index", (): void => {
headingText: "Security 9",
headingText2: " Transactions",
view: transactionsTable,
url: /#!\/securities\/\d+\/transactions/u,
url: /#!\/securities\/\d+\/transactions/v,
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/support/securities/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function checkRowMatches(
): void {
if (noTransactions) {
cy.get(securityName)
.contains(new RegExp(`${expectedValues.name}\\s+No transactions`, "u"))
.contains(new RegExp(`${expectedValues.name}\\s+No transactions`, "v"))
.should("exist");
} else {
cy.get(securityName).should("contain.text", expectedValues.name);
Expand Down
Loading

0 comments on commit 0aadb58

Please sign in to comment.