Files
library/apps/frontend-e2e/src/support/app.po.ts
T
hikari d17721aa91
Node.js CI / CI (pull_request) Successful in 1m20s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m24s
fix: resolve CSP and accessibility issues
- Allow inline styles in CSP for Angular component encapsulation
- Hide skip-to-main-content link using screen-reader-only pattern
- Add JavaScript handler for skip link to work across all routes
- Add eslint-disable comments for intentional design choices
2026-02-20 02:09:22 -08:00

14 lines
283 B
TypeScript

/**
* @copyright 2026 NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
/**
* Gets the greeting element from the page.
* @returns A Cypress chainable to the h1 element.
*/
export const getGreeting = (): Cypress.Chainable => {
return cy.get("h1");
};