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:
Jamie 2022-09-14 20:39:48 +01:00 committed by GitHub
commit ff04d87534
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 292 additions and 95 deletions

View file

@ -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;