mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
Added automation
This commit is contained in:
parent
57dfbd6748
commit
d31da0a249
44 changed files with 7013 additions and 6 deletions
20
tests/global.d.ts
vendored
Normal file
20
tests/global.d.ts
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
/// <reference types="cypress" />
|
||||
|
||||
|
||||
declare namespace Cypress {
|
||||
interface Chainable {
|
||||
|
||||
landingSettings(enabled: boolean): Chainable<any>;
|
||||
login(username: string, password: string): Chainable<any>;
|
||||
login(): Chainable<any>;
|
||||
removeLogin(): Chainable<any>;
|
||||
verifyNotification(text: string): Chainable<any>;
|
||||
createUser(username: string, password: string, claims: any[]): Chainable<any>;
|
||||
generateUniqueId(): Chainable<string>;
|
||||
|
||||
requestGenericMovie(): Chainable<any>;
|
||||
requestMovie(movieId: number): Chainable<any>;
|
||||
requestAllTv(tvId: number): Chainable<any>;
|
||||
removeAllMovieRequests(): Chainable<any>;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue