Skip to content

Commit

Permalink
Enable more FastWS test cases
Browse files Browse the repository at this point in the history
Re-enable commented test cases for FastWS including huge payload, ping with small payload, and ping only scenarios. This change ensures comprehensive coverage and validation of the FastWS implementation.
  • Loading branch information
ehsannm committed Oct 23, 2024
1 parent a83a916 commit a2011bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions testenv/fastws_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
func TestFastWS(t *testing.T) {
Convey("Kit with FastWS", t, func(c C) {
testCases := map[string]func(t *testing.T, opt fx.Option) func(c C){
//"Edge Server With Huge Websocket Payload": fastwsWithHugePayload,
//"Edge Server With Ping and Small Payload": fastwsWithPingAndSmallPayload,
//"Edge Server With Ping Only": fastwsWithPingOnly,
"Edge Server With Close": fastwsWithClose,
"Edge Server With Huge Websocket Payload": fastwsWithHugePayload,
"Edge Server With Ping and Small Payload": fastwsWithPingAndSmallPayload,
"Edge Server With Ping Only": fastwsWithPingOnly,
"Edge Server With Close": fastwsWithClose,
}
for title, fn := range testCases {
Convey(title,
Expand Down

0 comments on commit a2011bb

Please sign in to comment.