diff --git a/client/cypress/e2e/frontend/modules/duplicate-content-block.cy.ts b/client/cypress/e2e/frontend/modules/duplicate-content-block.cy.ts new file mode 100644 index 00000000..ea86f82d --- /dev/null +++ b/client/cypress/e2e/frontend/modules/duplicate-content-block.cy.ts @@ -0,0 +1,10 @@ +describe('Duplicate Content Block', () => { + beforeEach(() => { + cy.setup(); + }); + it('works', () => { + cy.visit('/'); + + cy.getByDataCy('whatever'); + }); +});