mirror of
https://github.com/sct/overseerr.git
synced 2025-09-30 15:40:40 +02:00
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
describe('TV Details', () => {
|
|
it('loads a movie page', () => {
|
|
cy.login(Cypress.env('ADMIN_EMAIL'), Cypress.env('ADMIN_PASSWORD'));
|
|
// Try to load stranger things
|
|
cy.visit('/tv/66732');
|
|
|
|
cy.get('[data-testid=media-title]').should(
|
|
'contain',
|
|
'Stranger Things (2016)'
|
|
);
|
|
});
|
|
});
|