@@ -854,7 +854,7 @@ function websocketTestSuite(rpcFactory: () => RpcClient, expected: ExpectedValue
854854describe ( "Comet38Client with CometBFT 0.38 backend" , ( ) => {
855855 const { url, expected } = tendermintInstances [ 38 ] ;
856856
857- ( tendermintEnabled ? it : it . skip ) ( "can connect to a given url" , async ( ) => {
857+ ( tendermintEnabled ? it : xit ) ( "can connect to a given url" , async ( ) => {
858858 // http connection
859859 {
860860 const client = await Comet38Client . connect ( "http://" + url ) ;
@@ -872,11 +872,11 @@ describe("Comet38Client with CometBFT 0.38 backend", () => {
872872 }
873873 } ) ;
874874
875- ( tendermintEnabled ? describe : describe . skip ) ( "With HttpClient" , ( ) => {
875+ ( tendermintEnabled ? describe : xdescribe ) ( "With HttpClient" , ( ) => {
876876 defaultTestSuite ( ( ) => new HttpClient ( "http://" + url ) , expected ) ;
877877 } ) ;
878878
879- ( tendermintEnabled ? describe : describe . skip ) ( "With WebsocketClient" , ( ) => {
879+ ( tendermintEnabled ? describe : xdescribe ) ( "With WebsocketClient" , ( ) => {
880880 // don't print out WebSocket errors if marked pending
881881 const onError = globalThis . process ?. env . TENDERMINT_ENABLED ? console . error : ( ) => 0 ;
882882 const factory = ( ) : WebsocketClient => new WebsocketClient ( "ws://" + url , onError ) ;
@@ -888,7 +888,7 @@ describe("Comet38Client with CometBFT 0.38 backend", () => {
888888describe ( "Comet38Client with CometBFT 1 backend" , ( ) => {
889889 const { url, expected } = tendermintInstances [ 1 ] ;
890890
891- ( tendermintEnabled ? it : it . skip ) ( "can connect to a given url" , async ( ) => {
891+ ( tendermintEnabled ? it : xit ) ( "can connect to a given url" , async ( ) => {
892892 // http connection
893893 {
894894 const client = await Comet38Client . connect ( "http://" + url ) ;
@@ -906,11 +906,11 @@ describe("Comet38Client with CometBFT 1 backend", () => {
906906 }
907907 } ) ;
908908
909- ( tendermintEnabled ? describe : describe . skip ) ( "With HttpClient" , ( ) => {
909+ ( tendermintEnabled ? describe : xdescribe ) ( "With HttpClient" , ( ) => {
910910 defaultTestSuite ( ( ) => new HttpClient ( "http://" + url ) , expected ) ;
911911 } ) ;
912912
913- ( tendermintEnabled ? describe : describe . skip ) ( "With WebsocketClient" , ( ) => {
913+ ( tendermintEnabled ? describe : xdescribe ) ( "With WebsocketClient" , ( ) => {
914914 // don't print out WebSocket errors if marked pending
915915 const onError = globalThis . process ?. env . TENDERMINT_ENABLED ? console . error : ( ) => 0 ;
916916 const factory = ( ) : WebsocketClient => new WebsocketClient ( "ws://" + url , onError ) ;
0 commit comments