diff options
Diffstat (limited to 'spec/frontend')
-rw-r--r-- | spec/frontend/projects/pipelines/charts/components/app_spec.js | 4 | ||||
-rw-r--r-- | spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/projects/pipelines/charts/components/app_spec.js b/spec/frontend/projects/pipelines/charts/components/app_spec.js index 48ea333e2c3..8aeeb4d5d7d 100644 --- a/spec/frontend/projects/pipelines/charts/components/app_spec.js +++ b/spec/frontend/projects/pipelines/charts/components/app_spec.js @@ -1,7 +1,7 @@ import { shallowMount } from '@vue/test-utils'; import { GlColumnChart } from '@gitlab/ui/dist/charts'; -import Component from '~/projects/pipelines/charts/components/app'; -import StatisticsList from '~/projects/pipelines/charts/components/statistics_list'; +import Component from '~/projects/pipelines/charts/components/app.vue'; +import StatisticsList from '~/projects/pipelines/charts/components/statistics_list.vue'; import { counts, timesChartData } from '../mock_data'; describe('ProjectsPipelinesChartsApp', () => { diff --git a/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js b/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js index 93130f22407..f78608e9cb2 100644 --- a/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js +++ b/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js @@ -1,5 +1,5 @@ import { shallowMount } from '@vue/test-utils'; -import Component from '~/projects/pipelines/charts/components/statistics_list'; +import Component from '~/projects/pipelines/charts/components/statistics_list.vue'; import { counts } from '../mock_data'; describe('StatisticsList', () => { |