Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
max-parallel: 21
fail-fast: false
matrix:
version: [ 2.0, 3.0, 5.0, 6.0, 7.0, 8.0, 9.0 ]
version: [ 6.0, 7.0, 8.0, 9.0 ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
# config os
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions test/src/WebSocket.xunit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ public async Task WebSocketConnection()


await client.To.Open(new("ws://127.0.0.1:6001/empty"));
await Task.Delay(2000);
await Task.Delay(6000);
Assert.False(client.IsOpened);
Assert.Equal(1 + 2 + 8, index); // open and close: because path;
index = 0;

await client.To.Open(new("ws://127.0.0.1:112/"));
await Task.Delay(200);
await Task.Delay(500);
Assert.False(client.IsOpened);
Assert.Equal(2 + 4, index); // open and close (NEVER OPENED).
}
Expand Down
Loading