mirror of
https://github.com/sct/overseerr.git
synced 2025-09-30 23:43:33 +02: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)'
|
|
);
|
|
});
|
|
});
|