Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/blame/commit/54d90a7d2bcef9bfc8523c2761a12db49a089125/tests/global.d.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/tests/global.d.ts

25 lines
919 B

4 years ago
/// <reference types="cypress" />
declare namespace Cypress {
interface Chainable {
landingSettings(enabled: boolean): Chainable<any>;
4 years ago
loginWithCreds(username: string, password: string): Chainable<any>;
4 years ago
login(): Chainable<any>;
removeLogin(): Chainable<any>;
verifyNotification(text: string): Chainable<any>;
createUser(username: string, password: string, claims: any[]): Chainable<any>;
generateUniqueId(): Chainable<string>;
getByData(selector: string, args: any[]): Chainable<any>;
getByData(selector: string): Chainable<any>;
getByDataLike(selector: string): Chainable<any>;
triggerHover(): Chainable<any>;
4 years ago
requestGenericMovie(): Chainable<any>;
requestMovie(movieId: number): Chainable<any>;
requestAllTv(tvId: number): Chainable<any>;
removeAllMovieRequests(): Chainable<any>;
}
}