mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
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)'
|
|
);
|
|
});
|
|
});
|