skillbox/client/cypress/e2e/frontend/modules/duplicate-content-block.cy.ts

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');
});
});