Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/2fe41f3910e578d45cd36e88847cced382cb1785
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
1 deletions
@ -1,5 +1,5 @@
import { discoverPage as Page } from "@/integration/page-objects" ;
import { DiscoverType } from "@/integration/page-objects/shared/DiscoverCard" ;
import { discoverPage as Page } from "@/integration/page-objects" ;
describe ( "Discover Cards Requests Tests" , ( ) = > {
beforeEach ( ( ) = > {
@ -288,9 +288,15 @@ describe("Discover Cards Requests Tests", () => {
var expectedId = body [ 3 ] . id ;
var title = body [ 3 ] . title ;
cy . wait ( 3000 ) ;
const card = Page . popularCarousel . getCard ( expectedId , false , DiscoverType . Popular ) ;
card . title . realHover ( ) ;
cy . waitUntil ( ( ) = > {
return card . requestButton . should ( "be.visible" ) ;
} ) ;
card . verifyTitle ( title ) ;
card . requestButton . should ( "be.visible" ) ;
card . requestButton . click ( ) ;
@ -335,9 +341,15 @@ describe("Discover Cards Requests Tests", () => {
var expectedId = body [ 5 ] . id ;
var title = body [ 5 ] . title ;
cy . wait ( 3000 ) ;
const card = Page . popularCarousel . getCard ( expectedId , false , DiscoverType . Popular ) ;
card . title . realHover ( ) ;
cy . waitUntil ( ( ) = > {
return card . requestButton . should ( "be.visible" ) ;
} ) ;
card . verifyTitle ( title ) ;
card . requestButton . should ( "be.visible" ) ;
card . requestButton . click ( ) ;