18 lines
424 B
TypeScript
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 });
|
|
});
|
|
});
|