20 lines
503 B
TypeScript
20 lines
503 B
TypeScript
// Cypress support file.
|
|
// Place global hooks/commands here.
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
import { addClerkCommands } from "@clerk/testing/cypress";
|
|
|
|
// Clerk/Next.js occasionally throws a non-deterministic hydration mismatch
|
|
// on /sign-in. Ignore this known UI noise so E2E assertions can proceed.
|
|
Cypress.on("uncaught:exception", (err) => {
|
|
if (err?.message?.includes("Hydration failed")) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
addClerkCommands({ Cypress, cy });
|
|
|
|
import "./commands";
|