red-ui/cypress/integration/base/no-op.spec.ts
2020-11-10 11:05:46 +02:00

18 lines
424 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', () => {
cy.visit('/ui/projects');
cy.get('redaction-project-listing-empty', { timeout: 30000 });
});
});