Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrennan <brecon@microsoft.com>2022-09-28 03:01:09 +0300
committerBrennan <brecon@microsoft.com>2022-09-28 03:01:09 +0300
commit7102092a4a5433f5ff04579225eefc1dd69758a4 (patch)
tree5491663528aa2575d29c0c171cec00cfa0d3c82b
parentd63ef9e0736e82d45a6756135d8bbe41caa3d961 (diff)
undo test failurebrecon/junit
-rw-r--r--src/SignalR/clients/ts/FunctionalTests/ts/ConnectionTests.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SignalR/clients/ts/FunctionalTests/ts/ConnectionTests.ts b/src/SignalR/clients/ts/FunctionalTests/ts/ConnectionTests.ts
index 509b3b3dae..aaf622c571 100644
--- a/src/SignalR/clients/ts/FunctionalTests/ts/ConnectionTests.ts
+++ b/src/SignalR/clients/ts/FunctionalTests/ts/ConnectionTests.ts
@@ -215,7 +215,7 @@ describe("connection", () => {
const closePromise = new PromiseSource();
connection.onclose = (error: any) => {
expect(error).toBeUndefined();
- // closePromise.resolve();
+ closePromise.resolve();
};
await connection.start(TransferFormat.Text);