summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/ci/runner_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/api/graphql/ci/runner_spec.rb')
-rw-r--r--spec/requests/api/graphql/ci/runner_spec.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/spec/requests/api/graphql/ci/runner_spec.rb b/spec/requests/api/graphql/ci/runner_spec.rb
index fa16b9e1ddd..b99a3d14fb9 100644
--- a/spec/requests/api/graphql/ci/runner_spec.rb
+++ b/spec/requests/api/graphql/ci/runner_spec.rb
@@ -196,39 +196,6 @@ RSpec.describe 'Query.runner(id)' do
it_behaves_like 'runner details fetch', :inactive_instance_runner
end
- describe 'for runner inside group request' do
- let(:query) do
- %(
- query {
- group(fullPath: "#{group.full_path}") {
- runners {
- edges {
- webUrl
- node {
- id
- }
- }
- }
- }
- }
- )
- end
-
- it 'retrieves webUrl field with expected value' do
- post_graphql(query, current_user: user)
-
- runner_data = graphql_data_at(:group, :runners, :edges)
- expect(runner_data).to match_array [
- a_hash_including(
- 'webUrl' => "http://localhost/groups/#{group.full_path}/-/runners/#{active_group_runner.id}",
- 'node' => {
- 'id' => active_group_runner.to_global_id.to_s
- }
- )
- ]
- end
- end
-
describe 'for group runner request' do
let(:query) do
%(