diff --git a/cypress/integration/base/no-op.spec.ts b/cypress/integration/base/no-op.spec.ts index a155a70c6..69c7695ee 100644 --- a/cypress/integration/base/no-op.spec.ts +++ b/cypress/integration/base/no-op.spec.ts @@ -3,15 +3,16 @@ describe('it should only test login/logout flow', () => { before(() => { - cy.init('user'); + // cy.init('user'); }); after(() => { - cy.cleanup(); + // cy.cleanup(); }); it('it should land on homepage with no projects', () => { - cy.visit('/ui/projects'); - cy.get('redaction-project-listing-empty', { timeout: 30000 }); + console.log('no-op'); + // cy.visit('/ui/projects'); + // cy.get('redaction-project-listing-empty', { timeout: 30000 }); }); });