import {getMinimalMe} from '../../../support/helpers'; describe('Duplicate Content Block', () => { beforeEach(() => { cy.setup(); }); it('works', () => { cy.visit('/fron'); const operations = { MeQuery: getMinimalMe({isTeacher: true}), }; cy.mockGraphqlOps({ operations }); cy.getByDataCy('whatever'); }); });