Add cypress test file

This commit is contained in:
Ramon Wenger 2022-09-29 16:40:22 +02:00
parent d844530095
commit e30b392b96
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
describe('Duplicate Content Block', () => {
beforeEach(() => {
cy.setup();
});
it('works', () => {
cy.visit('/');
cy.getByDataCy('whatever');
});
});