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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-01 00:11:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-01 00:11:00 +0300
commit5d3df551dda6104f1ed8aa8f3947a2c982f0a7bc (patch)
tree532e24a0ac6a159675bc1c9e66e5dd5f079e07ec /spec/contracts
parente33402e375d7c05441d1ba6ac5030efb8a9c9537 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/contracts')
-rw-r--r--spec/contracts/consumer/resources/graphql/pipelines.js4
-rw-r--r--spec/contracts/consumer/specs/project/pipelines/show.spec.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/spec/contracts/consumer/resources/graphql/pipelines.js b/spec/contracts/consumer/resources/graphql/pipelines.js
index 48724e15eb8..2675597e10a 100644
--- a/spec/contracts/consumer/resources/graphql/pipelines.js
+++ b/spec/contracts/consumer/resources/graphql/pipelines.js
@@ -5,7 +5,7 @@ import { extractGraphQLQuery } from '../../helpers/graphql_query_extractor';
export async function getPipelineHeaderDataRequest(endpoint) {
const { url } = endpoint;
const query = await extractGraphQLQuery(
- 'app/assets/javascripts/pipelines/graphql/queries/get_pipeline_header_data.query.graphql',
+ 'app/assets/javascripts/ci/pipeline_details/graphql/queries/get_pipeline_header_data.query.graphql',
);
const graphqlQuery = {
query,
@@ -27,7 +27,7 @@ export async function getPipelineHeaderDataRequest(endpoint) {
export async function deletePipeline(endpoint) {
const { url } = endpoint;
const query = await extractGraphQLQuery(
- 'app/assets/javascripts/pipelines/graphql/mutations/delete_pipeline.mutation.graphql',
+ 'app/assets/javascripts/ci/pipeline_details/graphql/mutations/delete_pipeline.mutation.graphql',
);
const graphqlQuery = {
query,
diff --git a/spec/contracts/consumer/specs/project/pipelines/show.spec.js b/spec/contracts/consumer/specs/project/pipelines/show.spec.js
index 97ad9dbbc9d..423d85f21eb 100644
--- a/spec/contracts/consumer/specs/project/pipelines/show.spec.js
+++ b/spec/contracts/consumer/specs/project/pipelines/show.spec.js
@@ -27,7 +27,7 @@ pactWith(
describe(GET_PIPELINE_HEADER_DATA_PROVIDER_NAME, () => {
beforeEach(async () => {
const query = await extractGraphQLQuery(
- 'app/assets/javascripts/pipelines/graphql/queries/get_pipeline_header_data.query.graphql',
+ 'app/assets/javascripts/ci/pipeline_details/graphql/queries/get_pipeline_header_data.query.graphql',
);
const graphqlQuery = new GraphQLInteraction()
.given(PipelineHeaderData.scenario.state)
@@ -64,7 +64,7 @@ pactWith(
describe(DELETE_PIPELINE_PROVIDER_NAME, () => {
beforeEach(async () => {
const query = await extractGraphQLQuery(
- 'app/assets/javascripts/pipelines/graphql/mutations/delete_pipeline.mutation.graphql',
+ 'app/assets/javascripts/ci/pipeline_details/graphql/mutations/delete_pipeline.mutation.graphql',
);
const graphqlQuery = new GraphQLInteraction()
.given(DeletePipeline.scenario.state)