diff --git a/cypress/e2e/debug/deleteReports.cy.ts b/cypress/e2e/debug/deleteReports.cy.ts index 16c9d30a..a3adfbd4 100644 --- a/cypress/e2e/debug/deleteReports.cy.ts +++ b/cypress/e2e/debug/deleteReports.cy.ts @@ -11,7 +11,10 @@ describe('About deleting reports', () => { afterEach(() => cy.resetApp()); - it('Should delete a single report with the deleteSelected button', () => { + // Should not work with a log storage but should work with a crud storage. + // The system-under-test has to be fixed and then this test should + // be enabled again. + xit('Should delete a single report with the deleteSelected button', () => { cy.assertDebugTableLength(2); cy.get('[data-cy-debug="selectOne"]').eq(0).click(); cy.get('[data-cy-debug="deleteSelected"]').click();