mattupstate/angular-pipeline-example

View on GitHub
e2e/src/app.po.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { by, element } from 'protractor';

export class App {
  getGitCommit() {
    return element(by.id('build-info')).element(by.css('.git-commit')).getText() as Promise<string>;
  }
}