Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/84454e53c00c808e8a393c7750bdc418a7593e91/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

/// <reference types="cypress" />
declare namespace Cypress {
interface Chainable {
landingSettings(enabled: boolean): Chainable<any>;
loginWithCreds(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>;
getByData(selector: string, args: any[]): Chainable<any>;
getByData(selector: string): Chainable<any>;
getByDataLike(selector: string): Chainable<any>;
triggerHover(): Chainable<any>;
requestGenericMovie(): Chainable<any>;
requestMovie(movieId: number): Chainable<any>;
requestAllTv(tvId: number): Chainable<any>;
removeAllMovieRequests(): Chainable<any>;
}
}