From 44812e163784c52feb1933f3a4e72948b799f3bb Mon Sep 17 00:00:00 2001 From: Brennan Date: Thu, 19 Mar 2020 11:33:37 -0700 Subject: [PATCH] Skip flaky TS client test (#20004) --- .../clients/ts/FunctionalTests/ts/HubConnectionTests.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SignalR/clients/ts/FunctionalTests/ts/HubConnectionTests.ts b/src/SignalR/clients/ts/FunctionalTests/ts/HubConnectionTests.ts index 93275f5336..d58ef1f859 100644 --- a/src/SignalR/clients/ts/FunctionalTests/ts/HubConnectionTests.ts +++ b/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 })