Commit d14b5c3f authored by Tiffany Rea's avatar Tiffany Rea

Merge branch 'delete-qa-api-basics-projects-after-test' into 'master'

Delete api-basics- projects after QA test

See merge request gitlab-org/gitlab!82699
parents 3e060e01 fb1eb764
......@@ -104,6 +104,14 @@ module QA
expect(response.headers[:content_disposition]).not_to include("inline")
expect(response.headers[:content_type]).to include("image/svg+xml")
end
delete_project_request = Runtime::API::Request.new(@api_client, "/projects/#{sanitized_project_path}")
delete delete_project_request.url
expect_status(202)
expect(json_body).to match(
a_hash_including(message: '202 Accepted')
)
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment