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.
13 lines
336 B
13 lines
336 B
2 years ago
|
describe('Movie Details', () => {
|
||
|
it('loads a movie page', () => {
|
||
|
cy.login(Cypress.env('ADMIN_EMAIL'), Cypress.env('ADMIN_PASSWORD'));
|
||
|
// 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)'
|
||
|
);
|
||
|
});
|
||
|
});
|