Skip to content

Commit 23ee78a

Browse files
committed
reenable all e2e tests
1 parent 36ad014 commit 23ee78a

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

maintnotifications/e2e/scenario_endpoint_types_test.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ func TestEndpointTypesPushNotifications(t *testing.T) {
4444
endpointType: maintnotifications.EndpointTypeExternalIP,
4545
description: "External IP endpoint type for enterprise clusters",
4646
},
47-
// {
48-
// name: "ExternalFQDN",
49-
// endpointType: maintnotifications.EndpointTypeExternalFQDN,
50-
// description: "External FQDN endpoint type for DNS-based routing",
51-
// },
52-
// {
53-
// name: "None",
54-
// endpointType: maintnotifications.EndpointTypeNone,
55-
// description: "No endpoint type - reconnect with current config",
56-
// },
47+
{
48+
name: "ExternalFQDN",
49+
endpointType: maintnotifications.EndpointTypeExternalFQDN,
50+
description: "External FQDN endpoint type for DNS-based routing",
51+
},
52+
{
53+
name: "None",
54+
endpointType: maintnotifications.EndpointTypeNone,
55+
description: "No endpoint type - reconnect with current config",
56+
},
5757
}
5858

5959
defer func() {

maintnotifications/e2e/scenario_push_notifications_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// TestPushNotifications tests Redis Enterprise push notifications (MOVING, MIGRATING, MIGRATED)
17-
func _TestPushNotifications(t *testing.T) {
17+
func TestPushNotifications(t *testing.T) {
1818
if os.Getenv("E2E_SCENARIO_TESTS") != "true" {
1919
t.Skip("Scenario tests require E2E_SCENARIO_TESTS=true")
2020
}

maintnotifications/e2e/scenario_stress_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// TestStressPushNotifications tests push notifications under extreme stress conditions
17-
func _TestStressPushNotifications(t *testing.T) {
17+
func TestStressPushNotifications(t *testing.T) {
1818
if os.Getenv("E2E_SCENARIO_TESTS") != "true" {
1919
t.Skip("Scenario tests require E2E_SCENARIO_TESTS=true")
2020
}

maintnotifications/e2e/scenario_timeout_configs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// TestTimeoutConfigurationsPushNotifications tests push notifications with different timeout configurations
17-
func _TestTimeoutConfigurationsPushNotifications(t *testing.T) {
17+
func TestTimeoutConfigurationsPushNotifications(t *testing.T) {
1818
if os.Getenv("E2E_SCENARIO_TESTS") != "true" {
1919
t.Skip("Scenario tests require E2E_SCENARIO_TESTS=true")
2020
}

maintnotifications/e2e/scenario_tls_configs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
// TODO ADD TLS CONFIGS
1717
// TestTLSConfigurationsPushNotifications tests push notifications with different TLS configurations
18-
func _TestTLSConfigurationsPushNotifications(t *testing.T) {
18+
func ТestTLSConfigurationsPushNotifications(t *testing.T) {
1919
if os.Getenv("E2E_SCENARIO_TESTS") != "true" {
2020
t.Skip("Scenario tests require E2E_SCENARIO_TESTS=true")
2121
}

0 commit comments

Comments
 (0)