Browse Source

Skip flaky TS client test (#20004)

Brennan 6 years ago
parent
commit
44812e1637
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/SignalR/clients/ts/FunctionalTests/ts/HubConnectionTests.ts

+ 2 - 1
src/SignalR/clients/ts/FunctionalTests/ts/HubConnectionTests.ts

@@ -79,7 +79,8 @@ describe("hubConnection", () => {
             });
 
             if (shouldRunHttpsTests) {
-                it("using https, can invoke server method and receive result", (done) => {
+                // xit will skip the test
+                xit("using https, can invoke server method and receive result", (done) => {
                     const message = "你好,世界!";
 
                     const hubConnection = getConnectionBuilder(transportType, TESTHUBENDPOINT_HTTPS_URL, { httpClient })