2020-09-17 13:58:06 +03:00

14 lines
412 B
TypeScript

import { getGreeting } from '../support/app.po';
describe('red-ui-app', () => {
beforeEach(() => cy.visit('/'));
it('should display welcome message', () => {
// Custom command example, see `../support/commands.ts` file
cy.login('my-email@something.com', 'myPassword');
// Function helper example, see `../support/app.po.ts` file
getGreeting().contains('Welcome to red-ui-app!');
});
});