File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ describe('MVC E2E Tests', () => {
22 it ( 'shows swagger' , ( ) => {
33 let host = Cypress . env ( 'host_mvc' ) ? Cypress . env ( 'host_mvc' ) : 'localhost' ;
44 cy . visit ( `http://${ host } :8080/swagger-ui/index.html` ) ;
5- cy . get ( 'h2' ) . contains ( 'OpenAPI definition' ) . should ( 'not.be.null' ) ;
5+ cy . contains ( 'OpenAPI definition' ) . should ( 'not.be.null' ) ;
66 cy . wait ( 1000 ) ;
77
88 cy . get ( 'div[class="servers"] > label > select > option' ) . should ( 'have.value' , 'http://localhost:8080' ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ describe('WebFlux E2E Tests', () => {
22 it ( 'shows swagger' , ( ) => {
33 let host = Cypress . env ( 'host_webflux' ) ? Cypress . env ( 'host_webflux' ) : 'localhost' ;
44 cy . visit ( `http://${ host } :8081/webjars/swagger-ui/index.html` ) ;
5- cy . get ( 'h2' ) . contains ( 'OpenAPI definition' ) . should ( 'not.be.null' ) ;
5+ cy . contains ( 'OpenAPI definition' ) . should ( 'not.be.null' ) ;
66 cy . wait ( 1000 ) ;
77
88 cy . get ( 'div[class="servers"] > label > select > option' ) . should ( 'have.value' , 'http://localhost:8081' ) ;
You can’t perform that action at this time.
0 commit comments