red-ui/cypress/integration/base/no-op.spec.ts
2020-11-17 01:01:36 +02:00

19 lines
471 B
TypeScript

/// <reference types="cypress" />
/// <reference path="../../support/index.d.ts" />
describe('it should only test login/logout flow', () => {
before(() => {
// cy.init('user');
});
after(() => {
// cy.cleanup();
});
it('it should land on homepage with no projects', () => {
console.log('no-op');
// cy.visit('/ui/projects');
// cy.get('redaction-project-listing-empty', { timeout: 30000 });
});
});