diff --git a/plugins/github-actions/dev/index.tsx b/plugins/github-actions/dev/index.tsx index e105bf9294..ee761b3504 100644 --- a/plugins/github-actions/dev/index.tsx +++ b/plugins/github-actions/dev/index.tsx @@ -20,8 +20,8 @@ import { EntityGithubActionsContent, githubActionsPlugin } from '../src/plugin'; import { EntityProvider } from '@backstage/plugin-catalog-react'; import { Entity } from '@backstage/catalog-model'; import { GithubActionsApi, githubActionsApiRef } from '../src'; -import getWorkflowRunResponse from './getWorkflowRun.json'; -import listJobsForWorkflowRunResponse from './listJobsForWorkflowRun.json'; +import getWorkflowRunResponse from '../src/__fixtures__/get-workflow-run.json'; +import listJobsForWorkflowRunResponse from '../src/__fixtures__/list-jobs-for-workflow-run.json'; const mockEntity: Entity = { apiVersion: 'backstage.io/v1alpha1', diff --git a/plugins/github-actions/dev/getWorkflowRun.json b/plugins/github-actions/src/__fixtures__/get-workflow-run.json similarity index 100% rename from plugins/github-actions/dev/getWorkflowRun.json rename to plugins/github-actions/src/__fixtures__/get-workflow-run.json diff --git a/plugins/github-actions/dev/listJobsForWorkflowRun.json b/plugins/github-actions/src/__fixtures__/list-jobs-for-workflow-run.json similarity index 100% rename from plugins/github-actions/dev/listJobsForWorkflowRun.json rename to plugins/github-actions/src/__fixtures__/list-jobs-for-workflow-run.json