Files
windmill/frontend/cypress/support/e2e.ts
Ruben Fiszel b4107fb85e cypress
2022-07-03 01:12:09 +02:00

9 lines
157 B
TypeScript

import './commands'
declare global {
namespace Cypress {
interface Chainable {
login: (email: string, password: string) => Chainable<Element>
}
}
}