Files
tm_panel/cypress/support/index.d.ts
T
AmirReza Jamali bb1af8b31c feat(package): add Cypress for end-to-end testing and enhance scripts
- Added Cypress as a dependency for end-to-end testing.
- Introduced new npm scripts for running Cypress tests and starting the development server for testing.
- Updated package-lock.json to reflect the new dependencies and their versions.
2026-04-21 15:59:20 +03:30

12 lines
163 B
TypeScript

/// <reference types="cypress" />
declare global {
namespace Cypress {
interface Chainable {
loginAsAdmin(): Chainable<void>;
}
}
}
export {};