mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Merge branch 'develop' into feature/tvmaze-replacement
This commit is contained in:
commit
8368877c74
135 changed files with 10704 additions and 320 deletions
10
tests/cypress/integration/page-objects/base.page.ts
Normal file
10
tests/cypress/integration/page-objects/base.page.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
import { navBar as NavBar } from './shared/NavBar';
|
||||
export abstract class BasePage {
|
||||
abstract visit(options: Cypress.VisitOptions): Cypress.Chainable<Cypress.AUTWindow>;
|
||||
abstract visit(): Cypress.Chainable<Cypress.AUTWindow>;
|
||||
abstract visit(id: string): Cypress.Chainable<Cypress.AUTWindow>;
|
||||
abstract visit(id: string, options: Cypress.VisitOptions): Cypress.Chainable<Cypress.AUTWindow>;
|
||||
|
||||
navbar = NavBar;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue