From 37ea8100792685422d483a385ea85649cd5404d6 Mon Sep 17 00:00:00 2001 From: marktnoonan Date: Wed, 17 Jul 2024 15:38:45 -0400 Subject: [PATCH] fix lint error --- cypress/tests/ui/auth.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/tests/ui/auth.spec.ts b/cypress/tests/ui/auth.spec.ts index e745098c7..74fab8d6e 100644 --- a/cypress/tests/ui/auth.spec.ts +++ b/cypress/tests/ui/auth.spec.ts @@ -19,7 +19,7 @@ describe("User Sign-up and Login", function () { it("should redirect unauthenticated user to signin page", function () { cy.visit("/personal"); - cy.log('modified a test'); + cy.log("modified a test"); cy.location("pathname").should("equal", "/signin"); cy.visualSnapshot("Redirect to SignIn"); });