19 lines
360 B
TypeScript
19 lines
360 B
TypeScript
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');
|
|
});
|
|
});
|