Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/src/commit/182bd717089af9fdcb02cf007b5987a0c78395eb/cypress/e2e/movie-details.cy.ts
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
describe('Movie Details', () => {
|
|
it('loads a movie page', () => {
|
|
cy.loginAsAdmin();
|
|
// Try to load minions: rise of gru
|
|
cy.visit('/movie/438148');
|
|
|
|
cy.get('[data-testid=media-title]').should(
|
|
'contain',
|
|
'Minions: The Rise of Gru (2022)'
|
|
);
|
|
});
|
|
});
|