Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. describe('', () => {
  2. beforeEach(() => {
  3. cy.fixture('data.json').as('aliasData');
  4. });
  5. it('Search the title of a movie and show the list of films', () => {
  6. cy.get('@aliasData').then((data) => {
  7. cy.log('Fixture content');
  8. cy.log(data);
  9. });
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement