mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
feat: Recently requested improvements (#4755)
* feat(discover): ✨ Admins can now approve the Recently Requested list * feat(discover): ⚡ Images for the recently requested area are now loading faster and just better all around * test: ✅ Added automation for the new feature
This commit is contained in:
parent
b0b1764f38
commit
ff04d87534
18 changed files with 292 additions and 95 deletions
|
@ -43,9 +43,13 @@ class DetailedCard {
|
|||
return cy.get(`#detailed-request-status-${this.id}`);
|
||||
}
|
||||
|
||||
get approveButton(): Cypress.Chainable<any> {
|
||||
return cy.get(`#detailed-request-approve-${this.id}`);
|
||||
}
|
||||
|
||||
verifyTitle(expected: string): Cypress.Chainable<any> {
|
||||
return this.title.should('have.text',expected);
|
||||
}
|
||||
}
|
||||
|
||||
constructor(id: string) {
|
||||
this.id = id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue