You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
674 B
29 lines
674 B
describe('TV Details', () => {
|
|
it('loads a tv details page', () => {
|
|
cy.loginAsAdmin();
|
|
// Try to load stranger things
|
|
cy.visit('/tv/66732');
|
|
|
|
cy.get('[data-testid=media-title]').should(
|
|
'contain',
|
|
'Stranger Things (2016)'
|
|
);
|
|
});
|
|
|
|
it('shows seasons and expands episodes', () => {
|
|
cy.loginAsAdmin();
|
|
|
|
// Try to load stranger things
|
|
cy.visit('/tv/66732');
|
|
|
|
// intercept request for season info
|
|
cy.intercept('/api/v1/tv/66732/season/4').as('season4');
|
|
|
|
cy.contains('Season 4').should('be.visible').scrollIntoView().click();
|
|
|
|
cy.wait('@season4');
|
|
|
|
cy.contains('Chapter Nine').should('be.visible');
|
|
});
|
|
});
|