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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/graphql_helpers.rb')
-rw-r--r--spec/support/helpers/graphql_helpers.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/support/helpers/graphql_helpers.rb b/spec/support/helpers/graphql_helpers.rb
index 8b7d1c753d5..ff8908e531a 100644
--- a/spec/support/helpers/graphql_helpers.rb
+++ b/spec/support/helpers/graphql_helpers.rb
@@ -552,6 +552,12 @@ module GraphqlHelpers
expect(flattened_errors).to be_empty
end
+ # Helps migrate to the new GraphQL interpreter,
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/210556
+ def expect_graphql_error_to_be_created(error_class, match_message = nil)
+ expect { yield }.to raise_error(error_class, match_message)
+ end
+
def flattened_errors
Array.wrap(graphql_errors).flatten.compact
end