Sign in

calvin / public-calvin-sf-integration · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • public-calvin-sf-integration
  • packages
  • theme
  • tests
  • e2e
  • pages
  • base.ts
  • Initial import
      5390ddc3
    root authored
    2022-10-16 18:14:09 +0200  
    Browse Code ยป
base.ts 225 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Header from './components/header';

export default class Base {
  get path(): string {
    return '/';
  }

  get header() {
    return Header;
  }

  visit(): Cypress.Chainable {
    return cy.visit(this.path);
  }
}