cloudfoundry/stratos

View on GitHub
src/test-e2e/application/po/application-page-github.po.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ListComponent } from '../../po/list.po';
import { ApplicationBasePage } from './application-page.po';
import { CardGithubCommitInfo } from './card-github-commit-info.po';
import { CardGithubDeployInfo } from './card-github-deploy-info.po';
import { CardGithubRepoInfo } from './card-github-repo-info.po';

export class ApplicationPageGithubTab extends ApplicationBasePage {

  commits: ListComponent;
  cardDeploymentInfo: CardGithubDeployInfo;
  cardRepoInfo: CardGithubRepoInfo;
  cardCommitInfo: CardGithubCommitInfo;

  constructor(public cfGuid: string, public appGuid: string) {
    super(cfGuid, appGuid, 'gitscm');
    this.commits = new ListComponent();
    this.cardDeploymentInfo = new CardGithubDeployInfo();
    this.cardRepoInfo = new CardGithubRepoInfo();
    this.cardCommitInfo = new CardGithubCommitInfo();
  }

}