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

Fixed last test

pull/4128/head
tidusjar 4 years ago
parent 4af31f165b
commit b3a2fbdb0d

@ -197,7 +197,7 @@ describe("Discover Cards Requests Tests", () => {
});
});
it("Available TV does not allow us to request", () => {
it.only("Available TV does not allow us to request", () => {
cy.intercept("GET", "**/search/Tv/popular/**", (req) => {
req.reply((res) => {
const body = res.body;
@ -208,6 +208,13 @@ describe("Discover Cards Requests Tests", () => {
res.send(body);
});
}).as("cardsResponse");
cy.intercept("GET", "**/search/Tv/moviedb/**", (req) => {
req.reply((res2) => {
const body = res2.body;
body.fullyAvailable = true;
res2.send(body);
});
}).as("movieDbResponse");
window.localStorage.setItem("DiscoverOptions2", "3");
Page.visit();

Loading…
Cancel
Save