my-chat-room/apps/chat-room-e2e/src/integration/app.spec.ts

14 lines
410 B
TypeScript

import { getGreeting } from '../support/app.po';
describe('chat-room', () => {
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 chat-room!');
});
});