From dde0c1e27de888f9130e36c794384ee6f9f75304 Mon Sep 17 00:00:00 2001 From: Kunal Date: Sun, 8 Feb 2026 15:06:06 +0000 Subject: [PATCH] test(e2e): register Clerk Cypress commands via addClerkCommands --- frontend/cypress/support/e2e.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/cypress/support/e2e.ts b/frontend/cypress/support/e2e.ts index ab72e0ce..369182a5 100644 --- a/frontend/cypress/support/e2e.ts +++ b/frontend/cypress/support/e2e.ts @@ -1,5 +1,10 @@ // Cypress support file. // Place global hooks/commands here. -import "@clerk/testing/cypress/support"; +/// + +import { addClerkCommands } from "@clerk/testing/cypress"; + +addClerkCommands({ Cypress, cy }); + import "./commands";