diff --git a/test/e2e/parallel/registration_service_test.go b/test/e2e/parallel/registration_service_test.go index caf6c1b4b..770aed746 100644 --- a/test/e2e/parallel/registration_service_test.go +++ b/test/e2e/parallel/registration_service_test.go @@ -995,6 +995,11 @@ func TestUIConfig(t *testing.T) { workatoWebHookURL, ok := response["workatoWebHookURL"].(string) require.True(t, ok) assert.Equal(t, "https://webhooks.testwebhook", workatoWebHookURL) + + // verify that disabledIntegrations is present and is an array + disabledIntegrations, ok := response["disabledIntegrations"] + require.True(t, ok, "disabledIntegrations field should be present in uiconfig response") + require.IsType(t, []interface{}{}, disabledIntegrations, "disabledIntegrations should be an array") }) }