mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
/* eslint-disable @typescript-eslint/no-namespace */
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
/// <reference types='cypress' />
|
|
|
|
import './e2e'
|
|
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable<Subject> {
|
|
login(email: string, password: string): Chainable<any>
|
|
}
|
|
}
|
|
}
|