Skip to content

Commit

Permalink
fix: use string syntax in staed of string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
pushpak1300 committed Aug 25, 2024
1 parent b1281b8 commit 74230b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/mailpit.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe("mailpit query test", () => {
const numberOfEmails = 5;
for (let i = 1; i <= numberOfEmails; i++) {
cy.mailpitSendMail({
to: [{ Email: `test@example.com`, Name: `To` }],
to: [{ Email: "test@example.com", Name: "To" }],
});
}
for (let i = 1; i <= numberOfEmails; i++) {
Expand Down

0 comments on commit 74230b6

Please sign in to comment.