groupdocs-annotation/GroupDocs.Annotation-for-Java-Spring

View on GitHub
client/apps/annotation-e2e/src/integration/app.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { getGreeting } from '../support/app.po';

describe('annotation', () => {
  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 annotation!');
  });
});