19 lines
471 B
TypeScript
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 });
|
|
});
|
|
});
|