From e30b392b9660c171d904b230b683eddb58e96079 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 29 Sep 2022 16:40:22 +0200 Subject: [PATCH] Add cypress test file --- .../e2e/frontend/modules/duplicate-content-block.cy.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 client/cypress/e2e/frontend/modules/duplicate-content-block.cy.ts 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'); + }); +});